HuggingFaceFW/fineweb-edu
Viewer • Updated • 3.5B • 370k • 1.23k
How to use applegrew/support-125M-slm-base with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-generation", model="applegrew/support-125M-slm-base") # Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM
tokenizer = AutoTokenizer.from_pretrained("applegrew/support-125M-slm-base")
model = AutoModelForCausalLM.from_pretrained("applegrew/support-125M-slm-base", device_map="auto")How to use applegrew/support-125M-slm-base with vLLM:
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "applegrew/support-125M-slm-base"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/completions" \
-H "Content-Type: application/json" \
--data '{
"model": "applegrew/support-125M-slm-base",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'docker model run hf.co/applegrew/support-125M-slm-base
How to use applegrew/support-125M-slm-base with SGLang:
# Install SGLang from pip:
pip install sglang
# Start the SGLang server:
python3 -m sglang.launch_server \
--model-path "applegrew/support-125M-slm-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": "applegrew/support-125M-slm-base",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'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 "applegrew/support-125M-slm-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": "applegrew/support-125M-slm-base",
"prompt": "Once upon a time,",
"max_tokens": 512,
"temperature": 0.5
}'How to use applegrew/support-125M-slm-base with Docker Model Runner:
docker model run hf.co/applegrew/support-125M-slm-base
A 125M parameter Llama-style language model trained from scratch on ~2.6B tokens of curated IT support and technical data. This is the base (pretrained) model — it completes text but does not follow instructions.
| Source | Tokens | Description |
|---|---|---|
| FineWeb-Edu | 900M | High-quality educational web text |
| Ubuntu IRC | 600M | Technical support chat logs |
| StackExchange | 1.05B | Q&A from StackExchange network |
| DCLM | 300M | Filtered web text |
| Parameter | Value |
|---|---|
| Parameters | 125,847,552 |
| Layers | 12 |
| Hidden dim | 768 |
| FFN dim | 3072 (SwiGLU) |
| Attention heads | 12 |
| KV heads | 12 (MHA) |
| Vocab size | 16,384 |
| Context length | 1,024 |
| Position encoding | RoPE |
| Norm | RMSNorm |
| Tie embeddings | Yes |
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("applegrew/support-125M-slm-base")
tokenizer = AutoTokenizer.from_pretrained("applegrew/support-125M-slm-base")
prompt = "The VPN connection keeps dropping"
inputs = tokenizer(prompt, return_tensors="pt")
outputs = model.generate(**inputs, max_new_tokens=100, temperature=0.7)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
This model uses custom chat tokens: <|bos|>, <|eos|>, <|pad|>, <|unk|>, <|system|>, <|user|>, <|assistant|>
For instruction following, use the SFT version: applegrew/support-125M-slm-sft
docker model run hf.co/applegrew/support-125M-slm-base