Instructions to use laion/symclip-30-8B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use laion/symclip-30-8B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="laion/symclip-30-8B") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoTokenizer, AutoModelForMultimodalLM tokenizer = AutoTokenizer.from_pretrained("laion/symclip-30-8B") model = AutoModelForMultimodalLM.from_pretrained("laion/symclip-30-8B") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = tokenizer.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(tokenizer.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use laion/symclip-30-8B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "laion/symclip-30-8B" # 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/symclip-30-8B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/laion/symclip-30-8B
- SGLang
How to use laion/symclip-30-8B 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/symclip-30-8B" \ --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/symclip-30-8B", "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/symclip-30-8B" \ --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/symclip-30-8B", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use laion/symclip-30-8B with Docker Model Runner:
docker model run hf.co/laion/symclip-30-8B
symclip-30-8B
RL (SkyRL GRPO) checkpoint from the symmetric-clip arm of the seqnorm + TIS
ablation series. The policy loss uses a symmetric PPO clip range (0.2 / 0.2)
together with sequence-normalized loss reduction
(loss_reduction=seq_mean_token_sum_norm_global) and Truncated Importance
Sampling (TIS) on the rollout logprobs, on untruncated rollouts. This
contrasts with the asymmetric-clip configuration used elsewhere in the series.
- Base model: laion/GLM-4_7-swesmith-sandboxes-with_tests-oracle_verified_120s-maxeps-131k-fixthink (a Qwen3-8B SFT)
- Training dataset: DCAgent/exp_rpt_pymethods2test-large
- Checkpoint:
global_step_30(selected by trailing-5 EMA, alpha=1/3, ofreward/avg_raw_rewardover saved multiples of 5; EMA = 0.459). - Training: SkyRL GRPO,
hf_save_interval=5, 56 GPU (14x GH200 nodes) on JSC Jupiter. Run was stopped at step 78/80; reward declined after the step-30 peak.
The rl_config.yaml in this repo is the exact launch config used for reproducibility.
Training Traces
Training-time Daytona/Harbor rollouts for this run are uploaded as a companion dataset: penfever/symclip
The dataset contains the last episode of each trial (per
make_and_upload_trace_dataset --episodes last) — the same rollouts the policy
was trained on after rollback / truncation.
Training Metrics
Parsed SkyRL training metrics (per-step CSVs for the full chain 856270 →
856271 → 856272, vLLM serving metrics, and the trial-stats summary) plus the
raw training .out logs are included under training_logs/
(parse_skyrl_metrics.py output). Reward peaked early (~0.70 at step 1),
settled in the ~0.40-0.46 band through the mid-run, with the trailing-5 EMA
maximized at step 30 before declining to ~0.27 by step 78. TIS alignment stayed
healthy throughout (exact-match fraction ~0.90-0.94).
- Downloads last month
- 40
Model tree for laion/symclip-30-8B
Base model
Qwen/Qwen3-8B-Base