Qwen3.5-0.8B-Base-LM

This repository is a text-only conversion of Qwen/Qwen3.5-0.8B-Base.

The original source checkpoint is multimodal. This converted repo keeps only the language-model weights and removes the vision encoder weights.

Load

from transformers import AutoTokenizer, AutoModelForCausalLM
import torch

repo_id = "igorktech/Qwen3.5-0.8B-Base-LM"
tokenizer = AutoTokenizer.from_pretrained(repo_id)
model = AutoModelForCausalLM.from_pretrained(
    repo_id,
    torch_dtype=torch.bfloat16 if torch.cuda.is_available() else torch.float32,
    device_map="auto",
)

prompt = "Write a short explanation of gradient descent."
inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
outputs = model.generate(**inputs, max_new_tokens=128)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
Downloads last month
332
Safetensors
Model size
0.8B params
Tensor type
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for igorktech/Qwen3.5-0.8B-Base-LM

Finetuned
(51)
this model