Add tiny 10-parameter model
Browse files- README.md +3 -0
- config.json +11 -0
- pytorch_model.pt +3 -0
README.md
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# tiny-tiny-tiny-llama (toy)
|
| 2 |
+
|
| 3 |
+
A 10-parameter tiny classifier that outputs one of A/B/C/D.
|
config.json
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "tiny-10-param-classifier",
|
| 3 |
+
"vocab": [
|
| 4 |
+
"A",
|
| 5 |
+
"B",
|
| 6 |
+
"C",
|
| 7 |
+
"D"
|
| 8 |
+
],
|
| 9 |
+
"param_count": 10,
|
| 10 |
+
"note": "Tiny model mapping any text to A/B/C/D via a 10-parameter MLP."
|
| 11 |
+
}
|
pytorch_model.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5aa6e579dcf5ca1d257f3ac9955039ea3949d6270803332a5a1faac4668ec3d3
|
| 3 |
+
size 2457
|