Instructions to use veyra-ai/Veyra2-Mango-30M-Base with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use veyra-ai/Veyra2-Mango-30M-Base with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="veyra-ai/Veyra2-Mango-30M-Base")# Load model directly from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("veyra-ai/Veyra2-Mango-30M-Base") model = AutoModelForCausalLM.from_pretrained("veyra-ai/Veyra2-Mango-30M-Base", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use veyra-ai/Veyra2-Mango-30M-Base with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "veyra-ai/Veyra2-Mango-30M-Base" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "veyra-ai/Veyra2-Mango-30M-Base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }'Use Docker
docker model run hf.co/veyra-ai/Veyra2-Mango-30M-Base
- SGLang
How to use veyra-ai/Veyra2-Mango-30M-Base 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 "veyra-ai/Veyra2-Mango-30M-Base" \ --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": "veyra-ai/Veyra2-Mango-30M-Base", "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 "veyra-ai/Veyra2-Mango-30M-Base" \ --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": "veyra-ai/Veyra2-Mango-30M-Base", "prompt": "Once upon a time,", "max_tokens": 512, "temperature": 0.5 }' - Docker Model Runner
How to use veyra-ai/Veyra2-Mango-30M-Base with Docker Model Runner:
docker model run hf.co/veyra-ai/Veyra2-Mango-30M-Base
Veyra2-Mango-30M-Base
Veyra2-Mango-30M-Base is a 30.7M-parameter Llama-like causal language model trained from scratch on approximately 30B tokens. It is a raw base model, not an instruction-tuned assistant. It is intended for research, benchmarking, continued pretraining, and small-model experimentation.
Model Details
| Property | Value |
|---|---|
| Parameters | 30,683,520 |
| Architecture | LlamaForCausalLM |
| Layers | 16 |
| Hidden size | 384 |
| Attention heads | 6 |
| KV heads | 2 |
| Head dim | 64 |
| Intermediate size | 1152 |
| Vocabulary size | 8192 |
| Context length used in training | 3072 |
| Activation | SwiGLU / SiLU |
| Normalization | RMSNorm |
| Attention | GQA |
| Positional encoding | RoPE |
| Weight tying | Tied input embeddings and LM head |
| Training tokens | Approximately 30B |
| Training precision | bfloat16 |
| Optimizer | AdamW |
Tokenizer
Special tokens:
<|endoftext|>: 0<|im_start|>: 1<|im_end|>: 2<|pad|>: 3
Training Data
The model was trained on a 30B-token pretraining mixture.
Stage 1 18,000,000,000 tokens 180 shards
Mixture:
dclm_baseline: 50%
finephrase: 20%
cosmopedia_v2: 10%
finemath_4plus: 10%
ultrafineweb_multistyle: 5%
ultrafineweb_qa: 5%
Stage 1.5 4,000,000,000 tokens 40 shards
This stage linearly transitions from the Stage 1 mixture to the Stage 2 mixture.
Stage 2 8,000,000,000 tokens 80 shards
Mixture:
finephrase: 30%
dclm_baseline: 30%
cosmopedia_v2: 18%
finemath_4plus: 10%
ultrafineweb_multistyle: 5%
ultrafineweb_qa: 5%
ultrachat: 2%
Training Summary
- Final step: 25,432
- Tokens seen: 30,000,000,000
- Tokens per step: 1,179,648
- Sequence length: 3072
- Last train loss: 2.5062
Usage
import torch
from transformers import AutoTokenizer, AutoModelForCausalLM
model_id = "veyra-ai/Veyra2-Mango-30M-Base"
tokenizer = AutoTokenizer.from_pretrained(
model_id,
)
model = AutoModelForCausalLM.from_pretrained(
model_id,
torch_dtype=torch.float16,
device_map="cuda",
)
prompt = "In the 19th century"
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
with torch.no_grad():
output = model.generate(
**inputs,
max_new_tokens=120,
do_sample=True,
temperature=0.6,
top_p=0.9,
repetition_penalty=1.1,
use_cache=True,
pad_token_id=tokenizer.pad_token_id,
eos_token_id=tokenizer.eos_token_id,
)
print(tokenizer.decode(output[0], skip_special_tokens=True))
Notes on Generation
Veyra2-Mango-30M-Base is a raw base model. It is not instruction tuned and should not be expected to behave like a chat assistant. Open-ended generations can be unstable, repetitive, or factually unreliable. It's not a polished assistant.
Intended Use
This model is intended for:
- small language model research
- continued pretraining
- benchmarking
- experimentation with compact causal LMs
Limitations
- Not instruction tuned
- Not RLHF tuned
- Not safe for factual or high-stakes use without additional validation
- Can hallucinate names, citations, species, references, and technical claims
- Open-ended text may drift off-topic
- Context length during training was 3072 tokens
Citation
If you use this model, please cite the model repository:
veyra-ai/Veyra2-Mango-30M-Base
- Downloads last month
- 226
Model tree for veyra-ai/Veyra2-Mango-30M-Base
Collection including veyra-ai/Veyra2-Mango-30M-Base
Evaluation results
- Accuracy on SciCloze-900self-reported42.440
- Accuracy on SciQself-reported65.100
- Normalized Accuracy on SciQself-reported58.300
- Normalized Accuracy on PIQAself-reported59.520
- Normalized Accuracy on ARC-Easyself-reported37.880
- Normalized Accuracy on ARC-Challengeself-reported23.290
- Normalized Accuracy on HellaSwagself-reported28.760
- Accuracy on Winograndeself-reported49.330
