File size: 727 Bytes
19704b2
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
license: apache-2.0
---
# ZSL Checkpoints

## Repository structure
Each checkpoint is saved in a branch of this repository, named `{model}-{size}-step{step}`.  

Each branch contains the following files:
```
config.yaml # training config
model.pt    # model weights
optim.pt    # optimizer weights
train.pt    # trainer params
```

## How to download checkpoints
To download a file for a specific checkpoint use the branch name as the revision, e.g.
```python
from huggingface_hub import hf_hub_download

hf_hub_download(repo_id="mirandrom/zsl-checkpoints", filename="model.pt", revision="OLMo-14M-step1024")
```

See [huggingface_hub](https://huggingface.co/docs/huggingface_hub/main/guides/download) for more information