Spaces:
Running
Running
Update README.md
Browse files
README.md
CHANGED
|
@@ -9,14 +9,19 @@ pinned: false
|
|
| 9 |
|
| 10 |
# ZeroGPU Spaces
|
| 11 |
|
| 12 |
-
<div style="background-color: rgba(255, 255, 255, 0.3);color:
|
| 13 |
-
<span style="font-weight: 600;">ZeroGPU is currently in beta.</span> It's available in early access for <a href="https://huggingface.co/subscribe/pro">PRO subscribers</a>.
|
| 14 |
</div>
|
| 15 |
|
| 16 |
-
<div style="background-color: rgba(255, 255, 255, 0.3);color:
|
| 17 |
-
<span style="font-weight: 600;">Please share your feedback about ZeroGPU</span> in the <a href="https://huggingface.co/spaces/zero-gpu-explorers/README/discussions">Community tab</a>.
|
| 18 |
</div>
|
| 19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 20 |
<img src="https://cdn-uploads.huggingface.co/production/uploads/5f17f0a0925b9863e28ad517/cAlvAOu9QC547zrmRVpS5.gif" style="width:100%;"/>
|
| 21 |
|
| 22 |
|
|
@@ -96,4 +101,33 @@ The lower the duration, the higher priority your Space visitors will have in the
|
|
| 96 |
|
| 97 |
Feel free to join this organization if you want to try ZeroGPU as a Space author. ✋ We should accept you shortly after checking your HF profile
|
| 98 |
|
| 99 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 9 |
|
| 10 |
# ZeroGPU Spaces
|
| 11 |
|
| 12 |
+
<div style="background-color: rgba(255, 255, 255, 0.3); color: rgba(0, 0, 0, 0.87); border: 1px solid rgba(0, 0, 0, 0.5); border-radius: 8px; padding: 0.5rem 1rem;">
|
| 13 |
+
<span style="font-weight: 600;">ZeroGPU is currently in beta.</span> It's available in early access for <a href="https://huggingface.co/subscribe/pro" style="color: inherit;">PRO subscribers</a>.
|
| 14 |
</div>
|
| 15 |
|
| 16 |
+
<div style="background-color: rgba(255, 255, 255, 0.3); color: rgba(0, 0, 0, 0.87); border: 1px solid rgba(0, 0, 0, 0.5); border-radius: 8px; padding: 0.5rem 1rem; margin-top: 10px;">
|
| 17 |
+
<span style="font-weight: 600;">Please share your feedback about ZeroGPU</span> in the <a href="https://huggingface.co/spaces/zero-gpu-explorers/README/discussions" style="color: inherit;">Community tab</a>.
|
| 18 |
</div>
|
| 19 |
|
| 20 |
+
<div style="background-color: rgba(255, 255, 255, 0.3); color: rgba(0, 0, 0, 0.87); border: 1px solid rgba(0, 0, 0, 0.5); border-radius: 8px; padding: 0.5rem 1rem; margin-top: 10px;">
|
| 21 |
+
<span style="font-weight: 600;">Browse ZeroGPU Spaces</span> here: <a href="https://huggingface.co/spaces/enzostvs/zero-gpu-spaces" style="color: inherit;">Community tab</a>.
|
| 22 |
+
</div>
|
| 23 |
+
|
| 24 |
+
|
| 25 |
<img src="https://cdn-uploads.huggingface.co/production/uploads/5f17f0a0925b9863e28ad517/cAlvAOu9QC547zrmRVpS5.gif" style="width:100%;"/>
|
| 26 |
|
| 27 |
|
|
|
|
| 101 |
|
| 102 |
Feel free to join this organization if you want to try ZeroGPU as a Space author. ✋ We should accept you shortly after checking your HF profile
|
| 103 |
|
| 104 |
+
<style>
|
| 105 |
+
:root {
|
| 106 |
+
--bg-color-light: rgba(255, 255, 255, 0.3);
|
| 107 |
+
--bg-color-dark: rgba(0, 0, 0, 0.3);
|
| 108 |
+
--text-color-light: rgb(0, 0, 0);
|
| 109 |
+
--text-color-dark: rgb(255, 255, 255);
|
| 110 |
+
}
|
| 111 |
+
|
| 112 |
+
.theme-light {
|
| 113 |
+
--bg-color: var(--bg-color-light);
|
| 114 |
+
--text-color: var(--text-color-light);
|
| 115 |
+
}
|
| 116 |
+
|
| 117 |
+
.theme-dark {
|
| 118 |
+
--bg-color: var(--bg-color-dark);
|
| 119 |
+
--text-color: var(--text-color-dark);
|
| 120 |
+
}
|
| 121 |
+
|
| 122 |
+
.notice {
|
| 123 |
+
background-color: var(--bg-color);
|
| 124 |
+
color: var(--text-color);
|
| 125 |
+
border-radius: 8px;
|
| 126 |
+
padding: 0.5rem 1rem;
|
| 127 |
+
margin-top: 10px;
|
| 128 |
+
}
|
| 129 |
+
|
| 130 |
+
.notice span {
|
| 131 |
+
font-weight: 600;
|
| 132 |
+
}
|
| 133 |
+
</style>
|