Instructions to use venkatasg/lil-bevo-x with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use venkatasg/lil-bevo-x with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("fill-mask", model="venkatasg/lil-bevo-x")# Load model directly from transformers import AutoTokenizer, AutoModelForMaskedLM tokenizer = AutoTokenizer.from_pretrained("venkatasg/lil-bevo-x") model = AutoModelForMaskedLM.from_pretrained("venkatasg/lil-bevo-x") - Notebooks
- Google Colab
- Kaggle
Update README.md
Browse files
README.md
CHANGED
|
@@ -12,12 +12,11 @@ Lil-Bevo-X is UT Austin's submission to the BabyLM challenge, specifically the *
|
|
| 12 |
|
| 13 |
[Link to GitHub Repo](https://github.com/venkatasg/Lil-Bevo)
|
| 14 |
|
| 15 |
-
##
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
- Model is trained with targeted linguistic masking for 1 epoch.
|
| 21 |
|
| 22 |
|
| 23 |
This README will be updated with more details soon.
|
|
|
|
| 12 |
|
| 13 |
[Link to GitHub Repo](https://github.com/venkatasg/Lil-Bevo)
|
| 14 |
|
| 15 |
+
## Model training regime:
|
| 16 |
+
1. 5 epochs on MAESTRO dataset (85M non-language music tokens) combined with strict small dataset.
|
| 17 |
+
2. 50 epochs of pretraining with sequence length of 128 on strict dataset.
|
| 18 |
+
3. 150 epochs of pretraining with sequence length of 512 on strict dataset.
|
| 19 |
+
4. 10 epochs of targeted MLM.
|
|
|
|
| 20 |
|
| 21 |
|
| 22 |
This README will be updated with more details soon.
|