Instructions to use stage-babylm/llama-256-2L with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use stage-babylm/llama-256-2L with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="stage-babylm/llama-256-2L")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("stage-babylm/llama-256-2L") model = AutoModelForCausalLM.from_pretrained("stage-babylm/llama-256-2L", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use stage-babylm/llama-256-2L with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "stage-babylm/llama-256-2L" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "stage-babylm/llama-256-2L", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/stage-babylm/llama-256-2L
- SGLang
How to use stage-babylm/llama-256-2L with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "stage-babylm/llama-256-2L" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "stage-babylm/llama-256-2L", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "stage-babylm/llama-256-2L" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "stage-babylm/llama-256-2L", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use stage-babylm/llama-256-2L with Docker Model Runner:
docker model run hf.co/stage-babylm/llama-256-2L
llama-256-2L
This model is a fine-tuned version of on an unknown dataset. It achieves the following results on the evaluation set:
- Loss: 1.9046
Model description
More information needed
Intended uses & limitations
More information needed
Training and evaluation data
More information needed
Training procedure
Training hyperparameters
The following hyperparameters were used during training:
- learning_rate: 0.0018
- train_batch_size: 32
- eval_batch_size: 32
- seed: 42
- optimizer: Use OptimizerNames.ADAMW_TORCH_FUSED with betas=(0.9,0.95) and epsilon=1e-06 and optimizer_args=No additional optimizer arguments
- lr_scheduler_type: cosine
- lr_scheduler_warmup_steps: 0.05
- num_epochs: 1.0
Training results
| Training Loss | Epoch | Step | Validation Loss |
|---|---|---|---|
| No log | 0 | 0 | 6.9650 |
| 2.5031 | 0.0500 | 2014 | 2.5194 |
| 2.3142 | 0.1000 | 4028 | 2.3236 |
| 2.2391 | 0.1500 | 6042 | 2.2541 |
| 2.1983 | 0.2000 | 8056 | 2.2153 |
| 2.1764 | 0.2500 | 10070 | 2.1878 |
| 2.1511 | 0.3000 | 12084 | 2.1678 |
| 2.1245 | 0.3500 | 14098 | 2.1461 |
| 2.1028 | 0.4000 | 16112 | 2.1291 |
| 2.0942 | 0.4500 | 18126 | 2.1075 |
| 2.0636 | 0.5000 | 20140 | 2.0847 |
| 2.0483 | 0.5500 | 22154 | 2.0644 |
| 2.0101 | 0.6000 | 24168 | 2.0382 |
| 2.0021 | 0.6500 | 26182 | 2.0161 |
| 1.9771 | 0.7000 | 28196 | 1.9936 |
| 1.9411 | 0.7500 | 30210 | 1.9658 |
| 1.9213 | 0.8000 | 32224 | 1.9466 |
| 1.9108 | 0.8500 | 34238 | 1.9272 |
| 1.8906 | 0.9000 | 36252 | 1.9131 |
| 1.8824 | 0.9500 | 38266 | 1.9064 |
| 1.8764 | 1.0 | 40278 | 1.9046 |
Framework versions
- Transformers 5.14.1
- Pytorch 2.13.0+cu130
- Datasets 5.0.0
- Tokenizers 0.22.2
- Downloads last month
- 1,090