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
Model tree for igorktech/Qwen3.5-0.8B-Base-LM
Base model
Qwen/Qwen3.5-0.8B-Base