Matteo He commited on
docs: add concrete repo tree to README
Browse files
README.md
CHANGED
|
@@ -39,6 +39,42 @@ Each directory contains `<name>.safetensors` (weights),
|
|
| 39 |
`<name>.config.json` (training hparams + quality metrics), and `<name>.md`
|
| 40 |
(one-page model card). The metadata format is unified across all artifacts.
|
| 41 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 42 |
## Quick start
|
| 43 |
|
| 44 |
```python
|
|
|
|
| 39 |
`<name>.config.json` (training hparams + quality metrics), and `<name>.md`
|
| 40 |
(one-page model card). The metadata format is unified across all artifacts.
|
| 41 |
|
| 42 |
+
## Repository tree
|
| 43 |
+
|
| 44 |
+
```
|
| 45 |
+
.
|
| 46 |
+
βββ README.md
|
| 47 |
+
β
|
| 48 |
+
βββ attribution/pythia-160m/
|
| 49 |
+
β βββ induction-{results.pt, verdict.json}
|
| 50 |
+
β βββ ioi-{results.pt, verdict.json}
|
| 51 |
+
β βββ sva-{results.pt, verdict.json}
|
| 52 |
+
β
|
| 53 |
+
βββ pythia-160m/
|
| 54 |
+
β βββ W_E/cross-snapshot-32/
|
| 55 |
+
β β βββ d8192/seed{0..4}.{safetensors, config.json, md}
|
| 56 |
+
β β βββ d24576/seed0.{safetensors, config.json, md}
|
| 57 |
+
β β
|
| 58 |
+
β βββ W_U/
|
| 59 |
+
β βββ cross-snapshot-32/
|
| 60 |
+
β β βββ d8192/seed{0..4}.{safetensors, config.json, md}
|
| 61 |
+
β β βββ d16384/seed0.{safetensors, config.json, md}
|
| 62 |
+
β β βββ d24576/seed{0..2}.{safetensors, config.json, md}
|
| 63 |
+
β β
|
| 64 |
+
β βββ cross-snapshot-16/d8192/seed0.{...}
|
| 65 |
+
β β
|
| 66 |
+
β βββ per-snapshot-saes/d8192/step{0..143000}.{safetensors, config.json, md} # 32 snapshots
|
| 67 |
+
β β
|
| 68 |
+
β βββ architecture-comparison/d8192/
|
| 69 |
+
β β βββ batchtopk/seed0.{...}
|
| 70 |
+
β β βββ gated/seed0.{...}
|
| 71 |
+
β β βββ gated-retuned/seed0.{...}
|
| 72 |
+
β β
|
| 73 |
+
β βββ final-snapshot-saes/d{6144, 8192, 16384, 32768, 65536}.{safetensors, config.json, md}
|
| 74 |
+
β
|
| 75 |
+
βββ pythia-1b/W_U/cross-snapshot-32/d{8192, 16384, 24576}/seed0.{safetensors, config.json, md}
|
| 76 |
+
```
|
| 77 |
+
|
| 78 |
## Quick start
|
| 79 |
|
| 80 |
```python
|