Views
No views yet
fineweb-100b, fineweb-edu-100b, proof-pile-2, slimpajama-chunk1, smollm-corpus, or starcoderstarcoder with 1.1e08 parameters on 3.0e08 tokens for a total of 2.0e17 FLOPs would have the name: L2L_starcoder_N1.1e08_D3.0e08_C2.0e17/huggingface_hub and transformers packages to load a model with the following snippet:1from olmo.model import HFMixinOLMo
2from huggingface_hub import snapshot_download
3
4tmp_dir = "tmp"
5model_name = "L2L_starcoder_N1.1e08_D3.0e08_C2.0e17"
6
7snapshot_download(
8 repo_id="KempnerInstituteAI/loss-to-loss",
9 allow_patterns=f"{model_name}/*",
10 local_dir=tmp_dir,
11)
12
13model = HFMixinOLMo.from_pretrained(f"{tmp_dir}/{model_name}")1@article{brandfonbrener2024loss,
2 title={Loss-to-Loss Prediction: Scaling Laws for All Datasets},
3 author={Brandfonbrener, David and Anand, Nikhil and Vyas, Nikhil and Malach, Eran and Kakade, Sham},
4 journal={arXiv preprint arXiv:2411.12925},
5 year={2024}
6}