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="Challenging666/comm-c")
messages = [
    {"role": "user", "content": "Who are you?"},
]
pipe(messages)
# Load model directly
from transformers import AutoTokenizer, AutoModelForCausalLM

tokenizer = AutoTokenizer.from_pretrained("Challenging666/comm-c")
model = AutoModelForCausalLM.from_pretrained("Challenging666/comm-c", device_map="auto")
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

Comm-C Qwen3-8B Thinking SFT

This checkpoint is a short 20-step SFT run based on Qwen3-8B.

Training target format:

<think>
reasoning_content
</think>
final response

Training summary:

  • Base model: Qwen3-8B
  • Data: synthetic Comm-C distillation data from GLM-5.2
  • Train rows: 4243
  • Validation rows: 99
  • Max length: 32768
  • Global batch size: 64
  • Learning rate: 2e-5
  • Training steps: 20
  • Output format: Hugging Face safetensors shards

This checkpoint is intended as a quick sanity-check artifact for thinking-format SFT, not a final converged model.

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