Aleksei Ustimenko commited on
Commit ·
e33f2ba
1
Parent(s): 5ccb4fd
Enable Hugging Face download counting
Browse files- README.md +3 -2
- config.json +7 -0
README.md
CHANGED
|
@@ -36,11 +36,12 @@ a visible-device subset compatible with its walker batch.
|
|
| 36 |
## Foundation checkpoint
|
| 37 |
|
| 38 |
This Hugging Face repository stores the directly loadable HamiltonZero v1
|
| 39 |
-
foundation checkpoint at `weights/hamiltonzero_v1.eqx`
|
| 40 |
-
|
| 41 |
|
| 42 |
```bash
|
| 43 |
hf download simulacra-research/HamiltonZero \
|
|
|
|
| 44 |
weights/hamiltonzero_v1.eqx \
|
| 45 |
--local-dir .
|
| 46 |
```
|
|
|
|
| 36 |
## Foundation checkpoint
|
| 37 |
|
| 38 |
This Hugging Face repository stores the directly loadable HamiltonZero v1
|
| 39 |
+
foundation checkpoint at `weights/hamiltonzero_v1.eqx`, with its manifest in
|
| 40 |
+
`config.json`. To download both files without cloning the repository:
|
| 41 |
|
| 42 |
```bash
|
| 43 |
hf download simulacra-research/HamiltonZero \
|
| 44 |
+
config.json \
|
| 45 |
weights/hamiltonzero_v1.eqx \
|
| 46 |
--local-dir .
|
| 47 |
```
|
config.json
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"checkpoint": "weights/hamiltonzero_v1.eqx",
|
| 3 |
+
"checkpoint_kind": "router",
|
| 4 |
+
"format": "equinox.tree_serialise_leaves",
|
| 5 |
+
"package": "hamiltonzero",
|
| 6 |
+
"package_version": "0.1.0"
|
| 7 |
+
}
|