Model Card for Model ID
Introducing Pixie Zehir Nano.
Excelling in writing.
A fine tune of Qwen3 4B on HQ DATA™ from Pixie Zehir.
Model Details
- Developed by: [Maani x BLNKBLK]
- Language(s) (NLP): [English, German, French, Italian, Portugese, Hindi, Spanish, Thai, Japanese, Korean, Chinese, Persian]
- License: [Apache 2.0]
- Finetuned from model : [Qwen/Qwen3-4B]
Agreements
Model is created for research purposes.
Usage
!pip install transformers
import torch
from transformers import pipeline
pipe = pipeline(
"text-generation",
model="Maani/PXZNNO",
torch_dtype=torch.bfloat16,
device_map="auto",
)
prompt = "Write a haiku."
messages = [
{"role": "user", "content": prompt},
]
prompt = pipe.tokenizer.apply_chat_template(
messages,
tokenize=False,
add_generation_prompt=True,
enable_thinking=True # Switches between thinking and non-thinking modes. Default is True.
)
res = pipe(
prompt,
max_new_tokens=256,
temperature=0.7,
do_sample=True,
)
print(res[0]["generated_text"])
#sample of output
Cutting Knowledge Date: Oct 2024
<|eot_id|><|start_header_id|>user<|end_header_id|>
Write a haiku.<|eot_id|>
<|start_header_id|>assistant<|end_header_id|>
Crescent moon's soft glow, A path unwinds beneath, Dreams and reality blur
Thanks to mradermacher, You can find the GGUF quantized versions of earlier 1.8B Zehir nano at: mradermacher/PixieZehirNano-GGUF
- Downloads last month
- 68
Inference Providers
NEW
This model isn't deployed by any Inference Provider.
🙋
Ask for provider support