| 1 | # Checkpoints |
| 2 | |
| 3 | This directory holds the weights consumed by `inference.py`. Files are |
| 4 | **not** tracked by git — see `.gitignore`. The release authors will publish |
| 5 | download links separately. |
| 6 | |
| 7 | Expected layout (matches `configs/inference.yaml`): |
| 8 | |
| 9 | ``` |
| 10 | checkpoints/ |
| 11 | ├── echo-longvideo-release.safetensors # full release model (transformer + VAE + vocoder) |
| 12 | └── gemma-3-12b/ # Gemma 3 12B text encoder |
| 13 | ├── config.json |
| 14 | ├── tokenizer.json |
| 15 | └── ... |
| 16 | ``` |
| 17 | |
| 18 | If your weights live elsewhere, override the paths in `configs/inference.yaml` |
| 19 | or via CLI flags (e.g. `python inference.py --checkpoint /path/to/model.safetensors`). |
| 20 |