Spaces:
Running
Running
Upload 3 files
Browse files- assets/index-BvJJXBfE.js +0 -0
- assets/index-DDYN1ddX.css +1 -0
- index.html +40 -19
assets/index-BvJJXBfE.js
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
assets/index-DDYN1ddX.css
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
*{box-sizing:border-box;padding:0;margin:0;font-family:sans-serif}html,body{height:100%}body{padding:16px 32px}body,#container{display:flex;flex-direction:column;justify-content:center;align-items:center}#controls{display:flex;padding:1rem;gap:1rem}#controls>div{text-align:center}h1,h3{text-align:center}h3{margin-top:.5rem}#container{position:relative;width:720px;height:405px;max-width:100%;max-height:100%;border:2px dashed #D1D5DB;border-radius:.75rem;overflow:hidden;margin-top:1rem;background-size:100% 100%;background-position:center;background-repeat:no-repeat}#status{min-height:16px;margin:8px 0}video{width:100%;height:100%}input[type=text]{padding:.25rem .5rem;border:1px solid #D1D5DB;border-radius:.25rem;margin-top:2px}input[type=range]{margin-top:6px}#overlay{position:absolute;top:0;left:0;background-color:#ffffffe6;font-size:1.25rem;border-radius:2px}#overlay:not(:empty){padding:.5rem}
|
index.html
CHANGED
|
@@ -1,19 +1,40 @@
|
|
| 1 |
-
<!
|
| 2 |
-
<html>
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
</
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html>
|
| 2 |
+
<html lang="en">
|
| 3 |
+
|
| 4 |
+
<head>
|
| 5 |
+
<meta charset="UTF-8" />
|
| 6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
| 7 |
+
<title>Transformers.js | real-time Jina CLIP</title>
|
| 8 |
+
<script type="module" crossorigin src="/assets/index-BvJJXBfE.js"></script>
|
| 9 |
+
<link rel="stylesheet" crossorigin href="/assets/index-DDYN1ddX.css">
|
| 10 |
+
</head>
|
| 11 |
+
|
| 12 |
+
<body>
|
| 13 |
+
<h1>
|
| 14 |
+
Real-time zero-shot image classification (WebGPU)
|
| 15 |
+
</h1>
|
| 16 |
+
<h3>
|
| 17 |
+
Runs <a href="https://huggingface.co/jinaai/jina-clip-v1" target="_blank">Jina CLIP</a> locally in your browser w/
|
| 18 |
+
<a href="https://github.com/xenova/transformers.js" target="_blank">🤗 Transformers.js</a>
|
| 19 |
+
</h3>
|
| 20 |
+
<div id="container">
|
| 21 |
+
<video id="video" autoplay muted playsinline></video>
|
| 22 |
+
<div id="overlay"></div>
|
| 23 |
+
</div>
|
| 24 |
+
<div id="controls">
|
| 25 |
+
<div title="Labels used to perform zero-shot image classification">
|
| 26 |
+
<label>Labels (comma-separated)</label>
|
| 27 |
+
<br>
|
| 28 |
+
<input id="labels" type="text" disabled>
|
| 29 |
+
</div>
|
| 30 |
+
<div title="Template used to perform zero-shot image classification">
|
| 31 |
+
<label>Hypothesis template</label>
|
| 32 |
+
<br>
|
| 33 |
+
<input id="template" type="text" value="A photo of a {}" disabled>
|
| 34 |
+
</div>
|
| 35 |
+
</div>
|
| 36 |
+
<label id="status"></label>
|
| 37 |
+
|
| 38 |
+
</body>
|
| 39 |
+
|
| 40 |
+
</html>
|