Views
No views yet
| Parameter | Value |
|---|---|
| Base model | unsloth/Qwen3.5-2B |
| Method | LoRA (rank=16, alpha=32) |
| LoRA dropout | 0.05 |
| Learning rate | 0.0001 |
| Epochs | 3 (early stopping, patience=4) |
| Effective batch size | 64 |
| Max sequence length | 1024 |
| Scheduler | Cosine with 50 warmup steps |
| Precision | bf16 |
| Thinking mode | Disabled |
| GPU | NVIDIA L4 (22 GB) |
| Framework | Unsloth + TRL SFTTrainer |
| Dataset | Rows | Purpose |
|---|---|---|
| OpenAssistant/oasst_top1_2023-08-25 | 2,388 | Real human multi-turn conversations |
| HuggingFaceTB/everyday-conversations-llama3.1-2k | 1,910 | Greetings, small talk, basic Q&A |
| argilla/synthetic-concise-reasoning-sft | 535 | Short factual reasoning answers |
| WizardLM/WizardLM_evol_instruct_70k | 7,000 | Casual single-turn Q&A |
| Duplicates removed | 1,992 | |
| Total (after dedup) | 9,841 |
**bold**, `inline code`, [link](url), # headings all excluded1.) and bullet (-, *) patterns excluded at line-start and after colonsYou are a casual, hands-free voice assistant. Speak in short, punchy sentences as if we are having a real-time conversation. Never use bullet points, markdown, or code. If explaining a complex topic, use a simple, everyday analogy. Respond immediately without any preamble or internal monologue.
| Repo | Format | Use case |
|---|---|---|
| cowWhySo/qwen3_5_2B_voice_assistant | Merged 16-bit | Transformers / vLLM / SGLang |
| cowWhySo/qwen3_5_2B_voice_assistant-lora | LoRA adapters | Merge with base yourself |
| cowWhySo/qwen3_5_2B_voice_assistant-GGUF | GGUF (q4_k_m, q5_k_m, q8_0, f16) | llama.cpp / Ollama / LM Studio |
1huggingface-cli download cowWhySo/qwen3_5_2B_voice_assistant-GGUF --include "*q4_k_m*" --local-dir .
2./llama-cli -m *q4_k_m*.gguf --ctx-size 2048 --temp 0.7 --top-p 0.91from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("cowWhySo/qwen3_5_2B_voice_assistant")
4tokenizer = AutoTokenizer.from_pretrained("cowWhySo/qwen3_5_2B_voice_assistant")
5
6messages = [
7 {"role": "system", "content": "You are a casual, hands-free voice assistant. Speak in short, punchy sentences as if we are having a real-time conversation. Never use bullet points, markdown, or code. If explaining a complex topic, use a simple, everyday analogy. Respond immediately without any preamble or internal monologue."},
8 {"role": "user", "content": "What's the weather like today?"}
9]
10inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True)
11outputs = model.generate(inputs, max_new_tokens=256, temperature=0.7, top_p=0.9)
12print(tokenizer.decode(outputs[0], skip_special_tokens=True))