Downloads · 30 days
10
7% of all-time downloads
Redhanuman/Shadow-0.7B
Shadow-0.7B is a text generation model from Redhanuman. 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.
Shadow 0.7B is a specialized Small Language Model (SLM) optimized for logical reasoning, competitive programming, and chain-of-thought processing.
Downloads · 30 days
10
7% of all-time downloads
All-time downloads
148
Public
Parameters
596M
1.4 GB on disk
Likes
1
Public
Click a slice to open those files.
.safetensors1.4 GB · 99%
From the Hugging Face model README
Shadow 0.7B is a specialized Small Language Model (SLM) optimized for logical reasoning, competitive programming, and chain-of-thought processing.
Built on the Qwen3 0.6B architecture and fine-tuned using Unsloth, Shadow delivers surprising reasoning depth and "thinking-first" responses uncommon for a model of this size.
<think> style internal reasoning patterns to improve answer quality.from transformers import AutoModelForCausalLM, AutoTokenizer
import torch
model_name = "Redhanuman/Shadow-0.7B"
model = AutoModelForCausalLM.from_pretrained(
model_name,
torch_dtype="auto",
device_map="auto"
)
tokenizer = AutoTokenizer.from_pretrained(model_name)
prompt = "Write a Python script to check for palindromes. Explain your logic."
messages = [
{"role": "user", "content": prompt}
]
text = tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True
)
inputs = tokenizer([text], return_tensors="pt").to(model.device)
generated_ids = model.generate(
**inputs,
max_new_tokens=1024
)
print(tokenizer.decode(generated_ids[0], skip_special_tokens=True))