You need to agree to share your contact information to access this model

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this model content.

Qwen3-0.6B Recovery Scale 0.95

This repository contains a statically merged 0.6B-parameter causal language model based on Qwen3-0.6B. It is a complete Transformers model and does not require PEFT or external adapter files at inference time.

Loading

from transformers import AutoModelForCausalLM, AutoTokenizer

model_id = "YOUR_USERNAME/YOUR_MODEL_REPOSITORY"
tokenizer = AutoTokenizer.from_pretrained(model_id)
model = AutoModelForCausalLM.from_pretrained(model_id, device_map="auto")

messages = [{"role": "user", "content": "What is 17 + 25?"}]
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=160)
prompt_length = inputs["input_ids"].shape[-1]
print(tokenizer.decode(outputs[0][prompt_length:], skip_special_tokens=True))

Model details

  • Architecture: Qwen3ForCausalLM
  • Parameters: 596,049,920
  • Weight format: Safetensors
  • Weight files: one statically merged full-model checkpoint
  • Dynamic adapters required: no

Access to the repository is controlled through the Hugging Face gated-model settings configured by its owner.

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

Model tree for Gawiiiii/Qwen3-0.6B

Finetuned
Qwen/Qwen3-0.6B
Finetuned
(1149)
this model