Downloads · 30 days
12
2% of all-time downloads
Visixn/Index-9
Index-9 is a text generation model from Visixn. Use it when you need the model to write or continue text. It is set up for transformers. The card lists the license as apache-2.0.
Qwen2.5-Coder-1.5B-Instruct fine-tuned with QLoRA for coding (Python + web: JS/TS/HTML/CSS). Designed to be paired with live web search — a small model that leans on the web for facts. See the companion Space for the…
Downloads · 30 days
12
2% of all-time downloads
All-time downloads
508
Public
Parameters
1.5B
3.1 GB on disk
Likes
0
Public
Click a slice to open those files.
.safetensors3.1 GB · 99%
From the Hugging Face model README
Qwen2.5-Coder-1.5B-Instruct fine-tuned with QLoRA for coding (Python + web:
JS/TS/HTML/CSS). Designed to be paired with live web search — a small model
that leans on the web for facts. See the companion Space for the search-augmented
chat demo.
from transformers import AutoModelForCausalLM, AutoTokenizer
tok = AutoTokenizer.from_pretrained("Visixn/Index-9")
model = AutoModelForCausalLM.from_pretrained("Visixn/Index-9")
msgs = [{"role": "user", "content": "Write a palindrome checker in Python"}]
prompt = tok.apply_chat_template(msgs, tokenize=False, add_generation_prompt=True)
out = model.generate(**tok(prompt, return_tensors="pt"), max_new_tokens=256)
print(tok.decode(out[0], skip_special_tokens=True))