Downloads · 30 days
12
19% of all-time downloads
SVECTOR-CORPORATION/Theta-35-Mini
Theta-35-Mini is a machine learning model from SVECTOR-CORPORATION. Use it for the machine learning task on the model card, and read the license before you ship it in a product. The card lists the license as mit.
A lightweight, high-efficiency reasoning model distilled from Theta-35. Theta-35-Mini is a compact 3B parameter language model developed by SVECTOR, built on the Qwen architecture and trained using Group Relative Poli…
Downloads · 30 days
12
19% of all-time downloads
All-time downloads
63
Public
Repo size
12.4 GB
Likes
10
Public
Click a slice to open those files.
.bin6.2 GB · 100%
From the Hugging Face model README
A lightweight, high-efficiency reasoning model distilled from Theta-35. Theta-35-Mini is a compact 3B parameter language model developed by SVECTOR, built on the Qwen architecture and trained using Group Relative Policy Optimization (GRPO). It is the smaller sibling of our flagship Theta-35 model (33B parameters), offering efficient performance for resource-constrained environments.
Install dependencies:
pip install transformers
Run model in Python:
from transformers import AutoModelForCausalLM, AutoTokenizer
# Force use of the slow tokenizer to avoid tokenizer.json issues
tokenizer = AutoTokenizer.from_pretrained("SVECTOR-CORPORATION/Theta-35-Mini", use_fast=False)
model = AutoModelForCausalLM.from_pretrained("SVECTOR-CORPORATION/Theta-35-Mini")
inputs = tokenizer("Once upon a time", return_tensors="pt")
outputs = model.generate(**inputs, max_length=100, temperature=0.7)
print(tokenizer.decode(outputs[0], skip_special_tokens=True))
This model is released under the MIT License.
🔗 Visit us at svector.co.in