stevhliu HF staff commited on
Commit
d40473d
1 Parent(s): 2f88623

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +30 -8
index.html CHANGED
@@ -7,13 +7,35 @@
7
  <link rel="stylesheet" href="style.css" />
8
  </head>
9
  <body>
10
- <div class="card">
11
- <h1>Welcome to your static Space!</h1>
12
- <p>You can modify this app directly by editing <i>index.html</i> in the Files and versions tab.</p>
13
- <p>
14
- Also don't forget to check the
15
- <a href="https://huggingface.co/docs/hub/spaces" target="_blank">Spaces documentation</a>.
16
- </p>
17
- </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
  </body>
19
  </html>
 
7
  <link rel="stylesheet" href="style.css" />
8
  </head>
9
  <body>
10
+ <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">
11
+ <div class="flex flex-col items-center gap-4 space-y-0 p-0">
12
+ <div class="grid gap-1 text-center">
13
+ <h3 class="text-lg font-semibold tracking-tight">Soft prompting</h3>
14
+ <p class="text-muted-foreground text-xs">Click on each method to view an example Colaboratory notebook!</p>
15
+ </div>
16
+ </div>
17
+ <div class="grid gap-4 p-0">
18
+ <div class="flex items-center gap-4 text-sm">
19
+ <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">
20
+ <a href="#">Multitask prompt tuning</a>
21
+ </div>
22
+ </div>
23
+ <div class="flex items-center gap-4 text-sm">
24
+ <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">
25
+ <a href="#">P-tuning</a>
26
+ </div>
27
+ </div>
28
+ <div class="flex items-center gap-4 text-sm">
29
+ <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">
30
+ <a href="https://huggingface.co/spaces/PEFT/soft-prompting/blob/main/prefix-tuning-clm.ipynb">Prefix tuning</a>
31
+ </div>
32
+ </div>
33
+ <div class="flex items-center gap-4 text-sm">
34
+ <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">
35
+ <a href="#">Prompt tuning</a>
36
+ </div>
37
+ </div>
38
+ </div>
39
+ </div>
40
  </body>
41
  </html>