CoolFace
Modelpublic

natolambert/qwen3-dgx-spark-sft

sourceHugging Faceapache-2.0updated 8mo agoView on Hugging Face
0likes14downloads
Model Card

Qwen3 0.6B SFT (DGX Spark)

A supervised fine-tuned version of Qwen3-0.6B trained on the no_robots dataset.

Training Details

This model was trained on an NVIDIA DGX Spark (GB10 Blackwell GPU) as part of testing open-instruct on the new hardware platform.

ParameterValue
Base modelQwen/Qwen3-0.6B
DatasetHuggingFaceH4/no_robots
Epochs2
Batch size32
Gradient accumulation4
Learning rate2e-5
Schedulercosine
Max sequence length1024
Precisionbf16

Hardware

  • —GPU: NVIDIA GB10 (Blackwell, sm_121)
  • —Memory: 128GB unified CPU/GPU
  • —CUDA: 13.0

Usage

python
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained("natolambert/qwen3-dgx-spark-sft")
tokenizer = AutoTokenizer.from_pretrained("natolambert/qwen3-dgx-spark-sft")

messages = [{"role": "user", "content": "Write a short poem about machine learning."}]
inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True)
outputs = model.generate(inputs, max_new_tokens=256)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))

Training Script

Trained using the DGX Spark SFT script from open-instruct:

bash
./scripts/train/dgx-spark/sft_no_robots.sh

See dgx-spark-setup for details on running ML training on DGX Spark.

Limitations

This is primarily a test model to validate the DGX Spark training pipeline. It has not been extensively evaluated for downstream tasks.