Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,37 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc-by-4.0
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-4.0
|
| 3 |
+
---## Structure
|
| 4 |
+
|
| 5 |
+
```text
|
| 6 |
+
benchmark_v2/
|
| 7 |
+
datasets/ Local datasets, extracted archives, and Hugging Face caches
|
| 8 |
+
registry/ JSON registries for benchmark runs, metrics, configs, and checkpoints
|
| 9 |
+
train/ Training scripts and configuration files
|
| 10 |
+
models/ Model definition files
|
| 11 |
+
zoo/ Trained model checkpoints
|
| 12 |
+
collect/ Collected checkpoint trajectories
|
| 13 |
+
```
|
| 14 |
+
|
| 15 |
+
## Tasks
|
| 16 |
+
|
| 17 |
+
- Image classification
|
| 18 |
+
- Text classification
|
| 19 |
+
- Image segmentation
|
| 20 |
+
- M/LLM Adaptation
|
| 21 |
+
- Reinforcement learning
|
| 22 |
+
|
| 23 |
+
The main registry files are:
|
| 24 |
+
|
| 25 |
+
```text
|
| 26 |
+
registry/image_classification.json
|
| 27 |
+
registry/text_classification.json
|
| 28 |
+
registry/image_segmentation.json
|
| 29 |
+
registry/reinforcement_learning.json
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## Artifacts
|
| 33 |
+
|
| 34 |
+
- Trained checkpoints: `zoo/**/*.pth`
|
| 35 |
+
- Collected checkpoints: `collect/**/*.pth`
|
| 36 |
+
- Training configs: `train/**/config/*.json`
|
| 37 |
+
- Model code: `models/*.py`
|