Instructions to use EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModelForCausalLM model = AutoModelForCausalLM.from_pretrained("EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2", trust_remote_code=True, device_map="auto") - Kernels
How to use EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2 with Kernels:
# !pip install kernels from kernels import get_kernel kernel = get_kernel("EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2
- SGLang
How to use EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2 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 "EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2" \ --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": "EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2", "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 "EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2" \ --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": "EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2 with Docker Model Runner:
docker model run hf.co/EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2
Laguna-XS.2 → Dense (K=8) · CUDA-SFT-extended (follow-up SFT)
A ~3.0 B dense CUDA-kernel model — a follow-up SFT on top of laguna-xs2-dense-k8-cuda-sft, trained on more CUDA / C++ kernel code.
Lineage
poolside/Laguna-XS.2 (33B/3B-active MoE, 256 experts)
→ densify (K=8 dense SwiGLU) → DO-ACP warm-start
→ reconstruction-pretrain (kernel mixture, "V2")
→ SFT (SakanaAI CUDA, level_1+2, 400 steps) = laguna-xs2-dense-k8-cuda-sft
→ SFT-extended (level_1+2+3, +500 steps) = THIS MODEL
→ RFT/GRPO (verifiable reward) = next (laguna-xs2-dense-k8-cuda-rft)
Why a follow-up SFT (rationale)
The first SFT (400 steps, level_1+2) produced a model that emits working CUDA on simple ops (ReLU/Tanh ~3/4 at pass@k) but showed two gaps:
- Thin C++ idiom coverage — it botches more involved C++/CUDA constructs (e.g.
float4* v = float4* ptr;instead ofreinterpret_cast<float4*>(ptr)), so vectorized kernels fail to compile. - Limited CUDA breadth — harder ops (Sigmoid/GeLU/Softmax) compile/verify inconsistently.
This follow-up extends the SFT with more CUDA + C++ kernel data (Sakana level_1+2+3, +500
steps from the previous checkpoint) to broaden C++/CUDA coverage before RL. It is the mid checkpoint
in a 3-way comparison: SFT → SFT-extended (this) → SFT-extended-RFT.
Training
| Base | laguna-xs2-dense-k8-cuda-sft (continued, not from scratch) |
| Data | SakanaAI/AI-CUDA-Engineer-Archive level_1,level_2,level_3 (correct kernels), PyTorch→CUDA, chat-formatted, prompt masked |
| Objective | causal-LM cross-entropy on the CUDA completion only |
| Trainable | routed_dense + lm_head + norms (1.19 B) |
| Optimizer | AdamW 1e-5, grad-clip 1.0, grad-accum 8, seq 2048, 500 steps |
Evaluation
Benchmarked 3-way (SFT / SFT-extended / SFT-extended-RFT) on KernelBench-Lite L1 (10 elementwise ops, K=4, subprocess-isolated compile+correctness vs PyTorch eager). Results table: github.com/Tyronita/laguna-dense-cuda-kernels.
Intended use
Research base for RFT (RL on verified compile+correctness+speedup). Kernels are not verified at generation time — compile & check before use, and isolate execution (a bad kernel corrupts the CUDA context).
- Downloads last month
- 15
docker model run hf.co/EvanOLeary/laguna-xs2-dense-k8-cuda-sft-v2