-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHuggingFace_page.html
350 lines (349 loc) · 16.3 KB
/
HuggingFace_page.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
To further improve the app to match the original video, I will:
1. Adjust colors, spacing, and fonts to more closely match the original design.
2. Add the correct icons and logos.
3. Implement the trending sort functionality.
4. Add a details page for the microsoft/OmniParser model that appears when clicked.
5. Ensure the search clears properly and re-displays all apps.
6. Use more realistic placeholder data that matches the original app.
7. Make the app responsive so the layout adjusts on smaller screens.
<html>
<!DOCTYPE html>
<html>
<head>
<script src="https://cdn.tailwindcss.com">
</script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css" rel="stylesheet"/>
<script src="https://code.jquery.com/jquery-3.7.0.min.js">
</script>
</head>
<body>
<div class="flex flex-col h-screen">
<header class="bg-gray-900 text-white px-6 py-3 flex items-center border-b border-gray-800">
<img alt="Hugging Face" class="w-8 h-8 mr-4" src="https://huggingface.co/front/assets/huggingface_logo-noborder.svg"/>
<h1 class="text-2xl font-bold mr-8">
Spaces
</h1>
<p class="mr-8 text-lg text-gray-400">
Discover amazing AI apps made by the community!
</p>
<a class="bg-blue-500 hover:bg-blue-600 text-white px-4 py-2 rounded-md text-sm mr-4" href="#">
Create new Space
</a>
<a class="mr-4 hover:text-gray-300" href="#">
Models
</a>
<a class="mr-4 hover:text-gray-300" href="#">
Datasets
</a>
<a class="hover:text-gray-300" href="#">
Spaces
</a>
<div class="flex-grow">
</div>
<div class="relative">
<input class="bg-gray-800 text-white px-4 py-2 rounded-md w-80 text-sm pr-8" id="searchInput" placeholder="Search spaces" type="text"/>
<i class="fas fa-search absolute right-0 top-0 mt-3 mr-3 text-gray-400">
</i>
</div>
</header>
<div class="flex-grow overflow-hidden flex">
<div class="bg-gray-900 border-r border-gray-800 text-white w-64 p-4 overflow-y-auto">
<h2 class="text-lg font-bold mb-4">
Tasks
</h2>
<ul class="mb-8">
<li class="mb-3 hover:text-blue-400 cursor-pointer flex items-center">
<i class="fas fa-microchip mr-2">
</i>
<span>
Multimodal
</span>
</li>
<li class="mb-3 hover:text-blue-400 cursor-pointer flex items-center">
<i class="fas fa-image mr-2">
</i>
<span>
Image-Text-to-Text
</span>
</li>
<li class="mb-3 hover:text-blue-400 cursor-pointer flex items-center">
<i class="fas fa-question-circle mr-2">
</i>
<span>
Visual Question Answering
</span>
</li>
<!-- more task items -->
</ul>
<h2 class="text-lg font-bold mb-4">
Libraries
</h2>
<ul class="mb-8">
<li class="mb-3 hover:text-blue-400 cursor-pointer flex items-center">
<i class="fas fa-terminal mr-2">
</i>
<span>
Gradio
</span>
</li>
<li class="mb-3 hover:text-blue-400 cursor-pointer flex items-center">
<i class="fas fa-terminal mr-2">
</i>
<span>
Streamlit
</span>
</li>
<!-- more library items -->
</ul>
<h2 class="text-lg font-bold mb-4">
Models
</h2>
<ul>
<li class="mb-3 hover:text-blue-400 cursor-pointer flex items-center" id="omniParserModel">
<i class="fas fa-brain mr-2">
</i>
<span>
microsoft/OmniParser
</span>
</li>
<li class="mb-3 hover:text-blue-400 cursor-pointer flex items-center">
<i class="fas fa-brain mr-2">
</i>
<span>
genmo/mochi-1-preview
</span>
</li>
<li class="mb-3 hover:text-blue-400 cursor-pointer flex items-center">
<i class="fas fa-brain mr-2">
</i>
<span>
stabilityai/stable-diffusion-3.5-medium
</span>
</li>
<!-- more model items -->
</ul>
</div>
<div class="flex-grow p-6 overflow-y-auto">
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold">
Spaces of the week
</h2>
<i class="fas fa-fire text-red-500">
</i>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4 mb-8">
<div class="bg-white rounded-lg shadow-md p-4">
<img alt="Stable Diffusion 3.5 Large app allowing users to generate images using the Stable Diffusion 3.5 model with various settings and options." class="w-full h-40 object-cover mb-4 rounded-md" height="400" src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-wAWW9zoBnTeJ4DpbNYieMwU9/user-s3OeofjXigDPIRAgct8aXLk2/img-5yOJEdzjffV7FO2EcJoD51zp.png?st=2024-11-01T09%3A30%3A35Z&se=2024-11-01T11%3A30%3A35Z&sp=r&sv=2024-08-04&sr=b&rscd=inline&rsct=image/png&skoid=d505667d-d6c1-4a0a-bac7-5c84a87759f8&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-11-01T01%3A19%3A49Z&ske=2024-11-02T01%3A19%3A49Z&sks=b&skv=2024-08-04&sig=vMaOTuE2kxKL/wLzI6IEY8RCZ4gYGsyo00tYM4SVfi0%3D" width="600"/>
<div class="flex items-center justify-between mb-2">
<h3 class="text-xl font-bold">
Stable Diffusion 3.5 Large
</h3>
<div class="flex items-center">
<i class="fas fa-heart mr-2 text-red-500">
</i>
<span class="text-gray-500">
705
</span>
</div>
</div>
<p class="text-gray-500 text-sm mb-3">
Generate images with SD3.5
</p>
<div class="flex items-center">
<img alt="Avatar of stabilityai" class="w-6 h-6 rounded-full mr-2" height="30" src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-wAWW9zoBnTeJ4DpbNYieMwU9/user-s3OeofjXigDPIRAgct8aXLk2/img-1fuCK7v0rQ912mV1wtLnxx6W.png?st=2024-11-01T09%3A30%3A33Z&se=2024-11-01T11%3A30%3A33Z&sp=r&sv=2024-08-04&sr=b&rscd=inline&rsct=image/png&skoid=d505667d-d6c1-4a0a-bac7-5c84a87759f8&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-11-01T01%3A11%3A11Z&ske=2024-11-02T01%3A11%3A11Z&sks=b&skv=2024-08-04&sig=cE7mlCgWQEzHsk3ZMfX2C7FFZpY5bJWB1qTEl9iC2wk%3D" width="30"/>
<span>
stabilityai
</span>
<span class="ml-auto text-gray-500 text-xs">
10 days ago
</span>
</div>
</div>
<div class="bg-white rounded-lg shadow-md p-4">
<img alt="IC Light V2 app interface" class="w-full h-40 object-cover mb-4 rounded-md" src="https://placehold.co/600x400.png?text=IC+Light+V2+app+interface"/>
<div class="flex items-center justify-between mb-2">
<h3 class="text-xl font-bold">
IC Light V2
</h3>
<div class="flex items-center">
<i class="fas fa-heart mr-2 text-red-500">
</i>
<span class="text-gray-500">
384
</span>
</div>
</div>
<div class="flex items-center">
<img alt="Avatar of lllyasviel" class="w-6 h-6 rounded-full mr-2" height="30" src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-wAWW9zoBnTeJ4DpbNYieMwU9/user-s3OeofjXigDPIRAgct8aXLk2/img-0tOtlAix8Od7ptYAnRtwVYqn.png?st=2024-11-01T09%3A30%3A42Z&se=2024-11-01T11%3A30%3A42Z&sp=r&sv=2024-08-04&sr=b&rscd=inline&rsct=image/png&skoid=d505667d-d6c1-4a0a-bac7-5c84a87759f8&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-11-01T01%3A28%3A21Z&ske=2024-11-02T01%3A28%3A21Z&sks=b&skv=2024-08-04&sig=J6/e0vn5jbuxnkowAyemno/dpORbjpatjIMaGdNI1Ao%3D" width="30"/>
<span>
lllyasviel
</span>
<span class="ml-auto text-gray-500 text-xs">
5 days ago
</span>
</div>
</div>
<div class="bg-white rounded-lg shadow-md p-4">
<img alt="Allegro V2 app using Apache licensed advanced video generation model" class="w-full h-40 object-cover mb-4 rounded-md" src="https://placehold.co/600x400.png?text=Allegro+V2+app+using+Apache+licensed+advanced+video+generation+model"/>
<div class="flex items-center justify-between mb-2">
<h3 class="text-xl font-bold">
Allegro V2
</h3>
<div class="flex items-center">
<i class="fas fa-heart mr-2 text-red-500">
</i>
<span class="text-gray-500">
52
</span>
</div>
</div>
<p class="text-gray-500 text-sm mb-3">
Apache Licensed Advanced Video Generation Model
</p>
<div class="flex items-center">
<img alt="Avatar of fffiloni" class="w-6 h-6 rounded-full mr-2" height="30" src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-wAWW9zoBnTeJ4DpbNYieMwU9/user-s3OeofjXigDPIRAgct8aXLk2/img-B7lPuLrcCE5jPzjxAlVBtv0M.png?st=2024-11-01T09%3A30%3A36Z&se=2024-11-01T11%3A30%3A36Z&sp=r&sv=2024-08-04&sr=b&rscd=inline&rsct=image/png&skoid=d505667d-d6c1-4a0a-bac7-5c84a87759f8&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-11-01T01%3A30%3A42Z&ske=2024-11-02T01%3A30%3A42Z&sks=b&skv=2024-08-04&sig=t2GZ2yHJVrEbPnZGnWnJPtTPFTWUm0MBRRoQPcb%2B2yA%3D" width="30"/>
<span>
fffiloni
</span>
<span class="ml-auto text-gray-500 text-xs">
4 days ago
</span>
</div>
</div>
<div class="bg-white rounded-lg shadow-md p-4">
<img alt="Aya Expanse app interface" class="w-full h-40 object-cover mb-4 rounded-md" src="https://placehold.co/600x400.png?text=Aya+Expanse+app+interface"/>
<div class="flex items-center justify-between mb-2">
<h3 class="text-xl font-bold">
Aya Expanse
</h3>
<div class="flex items-center">
<i class="fas fa-heart mr-2 text-red-500">
</i>
<span class="text-gray-500">
163
</span>
</div>
</div>
<div class="flex items-center">
<img alt="Avatar of CohereForAI" class="w-6 h-6 rounded-full mr-2" src="https://placehold.co/30x30"/>
<span>
CohereForAI
</span>
<span class="ml-auto text-gray-500 text-xs">
3 days ago
</span>
</div>
</div>
</div>
<div class="flex justify-between items-center mb-6">
<h2 class="text-2xl font-bold">
All running apps, trending first
</h2>
<div class="flex items-center">
<i class="fas fa-sort-amount-up mr-2">
</i>
<span>
Sort Trending
</span>
</div>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-4 gap-4" id="allApps">
<div class="bg-white rounded-lg shadow-md p-4">
<img alt="Stable Diffusion 3.5 Large app allowing users to generate images using the Stable Diffusion 3.5 model with various settings and options." class="w-full h-40 object-cover mb-4 rounded-md" height="400" src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-wAWW9zoBnTeJ4DpbNYieMwU9/user-s3OeofjXigDPIRAgct8aXLk2/img-5yOJEdzjffV7FO2EcJoD51zp.png?st=2024-11-01T09%3A30%3A35Z&se=2024-11-01T11%3A30%3A35Z&sp=r&sv=2024-08-04&sr=b&rscd=inline&rsct=image/png&skoid=d505667d-d6c1-4a0a-bac7-5c84a87759f8&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-11-01T01%3A19%3A49Z&ske=2024-11-02T01%3A19%3A49Z&sks=b&skv=2024-08-04&sig=vMaOTuE2kxKL/wLzI6IEY8RCZ4gYGsyo00tYM4SVfi0%3D" width="600"/>
<div class="flex items-center justify-between mb-2">
<h3 class="text-xl font-bold">
Stable Diffusion 3.5 Large
</h3>
<div class="flex items-center">
<i class="fas fa-heart mr-2 text-red-500">
</i>
<span class="text-gray-500">
705
</span>
</div>
</div>
<p class="text-gray-500 text-sm mb-3">
Generate images with SD3.5
</p>
<div class="flex items-center">
<img alt="Avatar of stabilityai" class="w-6 h-6 rounded-full mr-2" height="30" src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-wAWW9zoBnTeJ4DpbNYieMwU9/user-s3OeofjXigDPIRAgct8aXLk2/img-1fuCK7v0rQ912mV1wtLnxx6W.png?st=2024-11-01T09%3A30%3A33Z&se=2024-11-01T11%3A30%3A33Z&sp=r&sv=2024-08-04&sr=b&rscd=inline&rsct=image/png&skoid=d505667d-d6c1-4a0a-bac7-5c84a87759f8&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-11-01T01%3A11%3A11Z&ske=2024-11-02T01%3A11%3A11Z&sks=b&skv=2024-08-04&sig=cE7mlCgWQEzHsk3ZMfX2C7FFZpY5bJWB1qTEl9iC2wk%3D" width="30"/>
<span>
stabilityai
</span>
<span class="ml-auto text-gray-500 text-xs">
10 days ago
</span>
</div>
</div>
<div class="bg-white rounded-lg shadow-md p-4">
<img alt="IC Light V2 app interface" class="w-full h-40 object-cover mb-4 rounded-md" src="https://placehold.co/600x400.png?text=IC+Light+V2+app+interface"/>
<div class="flex items-center justify-between mb-2">
<h3 class="text-xl font-bold">
IC Light V2
</h3>
<div class="flex items-center">
<i class="fas fa-heart mr-2 text-red-500">
</i>
<span class="text-gray-500">
384
</span>
</div>
</div>
<div class="flex items-center">
<img alt="Avatar of lllyasviel" class="w-6 h-6 rounded-full mr-2" height="30" src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-wAWW9zoBnTeJ4DpbNYieMwU9/user-s3OeofjXigDPIRAgct8aXLk2/img-0tOtlAix8Od7ptYAnRtwVYqn.png?st=2024-11-01T09%3A30%3A42Z&se=2024-11-01T11%3A30%3A42Z&sp=r&sv=2024-08-04&sr=b&rscd=inline&rsct=image/png&skoid=d505667d-d6c1-4a0a-bac7-5c84a87759f8&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-11-01T01%3A28%3A21Z&ske=2024-11-02T01%3A28%3A21Z&sks=b&skv=2024-08-04&sig=J6/e0vn5jbuxnkowAyemno/dpORbjpatjIMaGdNI1Ao%3D" width="30"/>
<span>
lllyasviel
</span>
<span class="ml-auto text-gray-500 text-xs">
5 days ago
</span>
</div>
</div>
<div class="bg-white rounded-lg shadow-md p-4">
<img alt="Kolors Virtual Try-On app interface" class="w-full h-40 object-cover mb-4 rounded-md" src="https://placehold.co/600x400.png?text=Kolors+Virtual+Try-On+app+interface"/>
<div class="flex items-center justify-between mb-2">
<h3 class="text-xl font-bold">
Kolors Virtual Try-On
</h3>
<div class="flex items-center">
<i class="fas fa-heart mr-2 text-red-500">
</i>
<span class="text-gray-500">
4.7k
</span>
</div>
</div>
<div class="flex items-center">
<img alt="Avatar of Kwai-Kolors" class="w-6 h-6 rounded-full mr-2" src="https://placehold.co/30x30"/>
<span>
Kwai-Kolors
</span>
</div>
</div>
<div class="bg-white rounded-lg shadow-md p-4">
<img alt="F5-TTS app for zero-shot voice cloning" class="w-full h-40 object-cover mb-4 rounded-md" height="400" src="https://oaidalleapiprodscus.blob.core.windows.net/private/org-wAWW9zoBnTeJ4DpbNYieMwU9/user-s3OeofjXigDPIRAgct8aXLk2/img-RAy8fJM42z0ccZidGIrAb1XC.png?st=2024-11-01T09%3A30%3A35Z&se=2024-11-01T11%3A30%3A35Z&sp=r&sv=2024-08-04&sr=b&rscd=inline&rsct=image/png&skoid=d505667d-d6c1-4a0a-bac7-5c84a87759f8&sktid=a48cca56-e6da-484e-a814-9c849652bcb3&skt=2024-11-01T01%3A03%3A05Z&ske=2024-11-02T01%3A03%3A05Z&sks=b&skv=2024-08-04&sig=QKvLQt6WRNrpXAEiMnJ3n0wZjx734uR0JyfToiyJduA%3D" width="600"/>
<div class="flex items-center justify-between mb-2">
<h3 class="text-xl font-bold">
F5-TTS
</h3>
<div class="flex items-center">
<i class="fas fa-heart mr-2 text-red-500">
</i>
<span class="text-gray-500">
1.01k
</span>
</div>
</div>
<p class="text-gray-500 text-sm mb-3">
F5-TTS & F2-TTS: Zero-Shot Voice Cloning (Unofficial Demo)
</p>
<div class="flex items-center">
</div>
</div>
</div>
</div>
</div>
</div>
</body>
</html>
</html>