Spaces:
Sleeping
Sleeping
Upload folder using huggingface_hub
Browse files- index.html +2 -0
- style.css +10 -0
index.html
CHANGED
|
@@ -14,6 +14,7 @@
|
|
| 14 |
<div class="links">
|
| 15 |
<a href="https://huggingface.co/Georgefifth/tiny-browser-planner-reason" class="btn" target="_blank" rel="noopener noreferrer">Model</a>
|
| 16 |
<a href="https://huggingface.co/datasets/Georgefifth/tiny-browser-planner-reason-dataset" class="btn" target="_blank" rel="noopener noreferrer">Dataset</a>
|
|
|
|
| 17 |
</div>
|
| 18 |
</header>
|
| 19 |
|
|
@@ -133,6 +134,7 @@
|
|
| 133 |
|
| 134 |
<section>
|
| 135 |
<h3>Try It Yourself</h3>
|
|
|
|
| 136 |
<pre><code>from unsloth import FastLanguageModel
|
| 137 |
import torch, re
|
| 138 |
|
|
|
|
| 14 |
<div class="links">
|
| 15 |
<a href="https://huggingface.co/Georgefifth/tiny-browser-planner-reason" class="btn" target="_blank" rel="noopener noreferrer">Model</a>
|
| 16 |
<a href="https://huggingface.co/datasets/Georgefifth/tiny-browser-planner-reason-dataset" class="btn" target="_blank" rel="noopener noreferrer">Dataset</a>
|
| 17 |
+
<a href="https://colab.research.google.com/#file=https://huggingface.co/Georgefifth/tiny-browser-planner-reason/resolve/main/demo_colab.ipynb" class="btn colab" target="_blank" rel="noopener noreferrer">Open in Colab</a>
|
| 18 |
</div>
|
| 19 |
</header>
|
| 20 |
|
|
|
|
| 134 |
|
| 135 |
<section>
|
| 136 |
<h3>Try It Yourself</h3>
|
| 137 |
+
<p><a href="https://colab.research.google.com/#file=https://huggingface.co/Georgefifth/tiny-browser-planner-reason/resolve/main/demo_colab.ipynb" target="_blank">Open in Colab</a> (free GPU, no setup) or run locally:</p>
|
| 138 |
<pre><code>from unsloth import FastLanguageModel
|
| 139 |
import torch, re
|
| 140 |
|
style.css
CHANGED
|
@@ -61,6 +61,16 @@ h1 {
|
|
| 61 |
border-color: #555;
|
| 62 |
}
|
| 63 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
section {
|
| 65 |
margin: 40px 0;
|
| 66 |
}
|
|
|
|
| 61 |
border-color: #555;
|
| 62 |
}
|
| 63 |
|
| 64 |
+
.btn.colab {
|
| 65 |
+
background: #1a3a1a;
|
| 66 |
+
border-color: #2a5a2a;
|
| 67 |
+
}
|
| 68 |
+
|
| 69 |
+
.btn.colab:hover {
|
| 70 |
+
background: #2a5a2a;
|
| 71 |
+
border-color: #4a8a4a;
|
| 72 |
+
}
|
| 73 |
+
|
| 74 |
section {
|
| 75 |
margin: 40px 0;
|
| 76 |
}
|