Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -6,23 +6,23 @@ tags:
|
|
| 6 |
license: mit
|
| 7 |
---
|
| 8 |
|
| 9 |
-
# babybabellm-
|
| 10 |
|
| 11 |
-
This repository contains checkpoints for the **
|
| 12 |
|
| 13 |
## Files
|
| 14 |
- `*_15_16.bin` β main model weights
|
| 15 |
- `*_15_16_ema.bin` β EMA smoothed weights
|
| 16 |
- `*_15_16_state_dict.bin` β PyTorch state dict
|
| 17 |
- `pytorch_model.bin` β extracted EMA weights (for AutoModel)
|
| 18 |
-
- Config + tokenizer files for model loading
|
| 19 |
|
| 20 |
## Usage
|
| 21 |
|
| 22 |
```python
|
| 23 |
from transformers import AutoModel, AutoTokenizer
|
| 24 |
|
| 25 |
-
repo = "suchirsalhan/babybabellm-
|
| 26 |
|
| 27 |
tokenizer = AutoTokenizer.from_pretrained(repo)
|
| 28 |
model = AutoModel.from_pretrained(repo)
|
|
@@ -33,7 +33,4 @@ outputs = model(**inputs)
|
|
| 33 |
|
| 34 |
## Notes
|
| 35 |
- These are research checkpoints trained on BabyLM-style data.
|
| 36 |
-
- Model naming: `
|
| 37 |
-
|
| 38 |
-
# To unzip shared files
|
| 39 |
-
# unzip shared_files.zip -d .
|
|
|
|
| 6 |
license: mit
|
| 7 |
---
|
| 8 |
|
| 9 |
+
# babybabellm-mono-deu
|
| 10 |
|
| 11 |
+
This repository contains checkpoints for the **mono-deu** variant of **BabyBabeLLM**.
|
| 12 |
|
| 13 |
## Files
|
| 14 |
- `*_15_16.bin` β main model weights
|
| 15 |
- `*_15_16_ema.bin` β EMA smoothed weights
|
| 16 |
- `*_15_16_state_dict.bin` β PyTorch state dict
|
| 17 |
- `pytorch_model.bin` β extracted EMA weights (for AutoModel)
|
| 18 |
+
- Config + tokenizer files for model loading
|
| 19 |
|
| 20 |
## Usage
|
| 21 |
|
| 22 |
```python
|
| 23 |
from transformers import AutoModel, AutoTokenizer
|
| 24 |
|
| 25 |
+
repo = "suchirsalhan/babybabellm-mono-deu"
|
| 26 |
|
| 27 |
tokenizer = AutoTokenizer.from_pretrained(repo)
|
| 28 |
model = AutoModel.from_pretrained(repo)
|
|
|
|
| 33 |
|
| 34 |
## Notes
|
| 35 |
- These are research checkpoints trained on BabyLM-style data.
|
| 36 |
+
- Model naming: `mono-deu` indicates the language/config variant.
|
|
|
|
|
|
|
|
|