How to use from the
Use from the
Transformers library
# Use a pipeline as a high-level helper
from transformers import pipeline

pipe = pipeline("text-generation", model="LorMolf/SPSD-RL")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("LorMolf/SPSD-RL")
model = AutoModelForCausalLM.from_pretrained("LorMolf/SPSD-RL")
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]:]))
Quick Links

SPSD-RL

Qwen3-4B-Base full-parameter checkpoint trained with prompt/completion supervision on the LorMolf/SPSD-RL conversation dataset.

Source artifact: outputs/qwen3_4b_base_spsd_rl_sft_prompt_completion_4gpu_20260603/final_bs20_accum4_ddp7200_wandb_localcache.

Downloads last month
1
Safetensors
Model size
4B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for LorMolf/SPSD-RL

Finetuned
(350)
this model