Sek2810 commited on
Commit
08a240d
·
verified ·
1 Parent(s): a5f9353

Upload index.html

Browse files
Files changed (1) hide show
  1. index.html +33 -0
index.html ADDED
@@ -0,0 +1,33 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <!DOCTYPE html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <meta name="viewport" content="width=device-width" />
6
+ <title>My static Space</title>
7
+ <link rel="stylesheet" href="style.css" />
8
+ </head>
9
+ <body>
10
+ <div class="absolute top-1/2 left-1/2 -translate-x-1/2 -translate-y-1/2">
11
+ <div class="bg-card text-card-foreground grid w-full max-w-sm gap-10 rounded-lg border p-10 shadow-lg" data-v0-t="card">
12
+ <div class="flex flex-col items-center gap-4 space-y-0 p-0">
13
+ <div class="grid gap-1 text-center">
14
+ <h3 class="text-lg font-semibold tracking-tight">Image classification</h3>
15
+ <p class="text-muted-foreground text-xs">Click to view an example Colaboratory notebook!</p>
16
+ </div>
17
+ </div>
18
+ <div class="grid gap-4 p-0">
19
+ <div class="flex items-center gap-4 text-sm">
20
+ <div class="focus:ring-ring bg-secondary text-secondary-foreground inline-flex items-center rounded-full border border-transparent px-2.5 py-0.5 text-xs font-semibold transition-colors hover:bg-gray-100/50 focus:outline-none focus:ring-2 focus:ring-offset-2 dark:hover:bg-gray-800/50">
21
+ <a href="https://huggingface.co/spaces/PEFT/image-classification/blob/main/image_classification_peft_lora.ipynb" target="_blank">LoRA</a>
22
+ </div>
23
+ </div>
24
+ <div class="flex items-center gap-4 text-sm">
25
+ <div class="focus:ring-ring bg-secondary text-secondary-foreground inline-flex items-center rounded-full border border-transparent px-2.5 py-0.5 text-xs font-semibold transition-colors hover:bg-gray-100/50 focus:outline-none focus:ring-2 focus:ring-offset-2 dark:hover:bg-gray-800/50">
26
+ <a href="https://huggingface.co/spaces/PEFT/image-classification/blob/main/image_classification_timm_peft_lora.ipynb" target="_blank">LoRA with timm models</a>
27
+ </div>
28
+ </div>
29
+ </div>
30
+ </div>
31
+ </div>
32
+ </body>
33
+ </html>