Text Generation
Transformers
Safetensors
grug_moe
marin
grug
mixture-of-experts
supervised-fine-tuning
conversational
Instructions to use laion/snowball-67b-a2b-sft-s2-thinking-step630 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use laion/snowball-67b-a2b-sft-s2-thinking-step630 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="laion/snowball-67b-a2b-sft-s2-thinking-step630") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("laion/snowball-67b-a2b-sft-s2-thinking-step630", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use laion/snowball-67b-a2b-sft-s2-thinking-step630 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "laion/snowball-67b-a2b-sft-s2-thinking-step630" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "laion/snowball-67b-a2b-sft-s2-thinking-step630", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/laion/snowball-67b-a2b-sft-s2-thinking-step630
- SGLang
How to use laion/snowball-67b-a2b-sft-s2-thinking-step630 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 "laion/snowball-67b-a2b-sft-s2-thinking-step630" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "laion/snowball-67b-a2b-sft-s2-thinking-step630", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "laion/snowball-67b-a2b-sft-s2-thinking-step630" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "laion/snowball-67b-a2b-sft-s2-thinking-step630", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use laion/snowball-67b-a2b-sft-s2-thinking-step630 with Docker Model Runner:
docker model run hf.co/laion/snowball-67b-a2b-sft-s2-thinking-step630
Snowball 67B-A2B SFT Stage 2: Thinking
This is the BF16 Hugging Face/vLLM export of the Thinking stage in Marin's ordered Chat → Thinking → Agentic SFT campaign.
Training provenance
- Initialization: final Stage 1 Chat checkpoint at step 257
- Data:
laion/llama-nemotron-science-reasoning-on-canonical-think-fullat revisionbae881d - Schedule: one packed epoch, 630 steps
- Native checkpoint:
s3://marin-us-east-02a/marin/grug/snowball_step105149_sft_s2_thinking/2026.08.13.1/checkpoints/step-630/ - Source:
marin-community/marin#8172at7b1ea1dc07 - Experiment:
marin-community/marin#8225
The export preserves the Marin tokenizer and Delphi special tokens.
- Downloads last month
- 265