Text Generation
Transformers
Safetensors
GGUF
English
qwen3.5
voice-assistant
conversational
sft
lora
unsloth
Instructions to use cowWhySo/qwen3_5_2B_voice_assistant-lora with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use cowWhySo/qwen3_5_2B_voice_assistant-lora with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="cowWhySo/qwen3_5_2B_voice_assistant-lora") messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoModel model = AutoModel.from_pretrained("cowWhySo/qwen3_5_2B_voice_assistant-lora", device_map="auto") - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use cowWhySo/qwen3_5_2B_voice_assistant-lora with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "cowWhySo/qwen3_5_2B_voice_assistant-lora" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cowWhySo/qwen3_5_2B_voice_assistant-lora", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/cowWhySo/qwen3_5_2B_voice_assistant-lora
- SGLang
How to use cowWhySo/qwen3_5_2B_voice_assistant-lora with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "cowWhySo/qwen3_5_2B_voice_assistant-lora" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cowWhySo/qwen3_5_2B_voice_assistant-lora", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "cowWhySo/qwen3_5_2B_voice_assistant-lora" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "cowWhySo/qwen3_5_2B_voice_assistant-lora", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Unsloth Desktop
- Docker Model Runner
How to use cowWhySo/qwen3_5_2B_voice_assistant-lora with Docker Model Runner:
docker model run hf.co/cowWhySo/qwen3_5_2B_voice_assistant-lora
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -2,15 +2,15 @@
|
|
| 2 |
license: apache-2.0
|
| 3 |
base_model: unsloth/Qwen3.5-2B
|
| 4 |
tags:
|
| 5 |
-
- qwen3.5
|
| 6 |
-
- voice-assistant
|
| 7 |
-
- conversational
|
| 8 |
-
- sft
|
| 9 |
-
- lora
|
| 10 |
-
- unsloth
|
| 11 |
-
- gguf
|
| 12 |
language:
|
| 13 |
-
- en
|
| 14 |
pipeline_tag: text-generation
|
| 15 |
library_name: transformers
|
| 16 |
---
|
|
@@ -19,6 +19,8 @@ library_name: transformers
|
|
| 19 |
|
| 20 |
Fine-tuned [Qwen3.5-2B](https://huggingface.co/unsloth/Qwen3.5-2B) for voice assistant / conversational use.
|
| 21 |
|
|
|
|
|
|
|
| 22 |
Trained on curated, concise datasets — all assistant responses are short and natural-sounding, optimized for spoken output rather than written text.
|
| 23 |
|
| 24 |
## Training Details
|
|
@@ -34,7 +36,7 @@ Trained on curated, concise datasets — all assistant responses are short and n
|
|
| 34 |
| Max sequence length | 1024 |
|
| 35 |
| Scheduler | Cosine with 50 warmup steps |
|
| 36 |
| Precision | bf16 |
|
| 37 |
-
| Thinking mode |
|
| 38 |
| GPU | NVIDIA L4 (22 GB) |
|
| 39 |
| Framework | [Unsloth](https://unsloth.ai) + TRL SFTTrainer |
|
| 40 |
|
|
@@ -49,9 +51,9 @@ bullet points, headings) are excluded. Exact-match deduplication is applied acro
|
|
| 49 |
| [OpenAssistant/oasst_top1_2023-08-25](https://huggingface.co/datasets/OpenAssistant/oasst_top1_2023-08-25) | 2,388 | Real human multi-turn conversations |
|
| 50 |
| [HuggingFaceTB/everyday-conversations-llama3.1-2k](https://huggingface.co/datasets/HuggingFaceTB/everyday-conversations-llama3.1-2k) | 1,910 | Greetings, small talk, basic Q&A |
|
| 51 |
| [argilla/synthetic-concise-reasoning-sft](https://huggingface.co/datasets/argilla/synthetic-concise-reasoning-sft) | 535 | Short factual reasoning answers |
|
| 52 |
-
| [WizardLM/WizardLM_evol_instruct_70k](https://huggingface.co/datasets/WizardLM/WizardLM_evol_instruct_70k) |
|
| 53 |
-
| **Duplicates removed** | **1,
|
| 54 |
-
| **Total (after dedup)** | **
|
| 55 |
|
| 56 |
## Filtering Pipeline (v7)
|
| 57 |
|
|
|
|
| 2 |
license: apache-2.0
|
| 3 |
base_model: unsloth/Qwen3.5-2B
|
| 4 |
tags:
|
| 5 |
+
- qwen3.5
|
| 6 |
+
- voice-assistant
|
| 7 |
+
- conversational
|
| 8 |
+
- sft
|
| 9 |
+
- lora
|
| 10 |
+
- unsloth
|
| 11 |
+
- gguf
|
| 12 |
language:
|
| 13 |
+
- en
|
| 14 |
pipeline_tag: text-generation
|
| 15 |
library_name: transformers
|
| 16 |
---
|
|
|
|
| 19 |
|
| 20 |
Fine-tuned [Qwen3.5-2B](https://huggingface.co/unsloth/Qwen3.5-2B) for voice assistant / conversational use.
|
| 21 |
|
| 22 |
+
This is designed to be short responses without thinking.
|
| 23 |
+
|
| 24 |
Trained on curated, concise datasets — all assistant responses are short and natural-sounding, optimized for spoken output rather than written text.
|
| 25 |
|
| 26 |
## Training Details
|
|
|
|
| 36 |
| Max sequence length | 1024 |
|
| 37 |
| Scheduler | Cosine with 50 warmup steps |
|
| 38 |
| Precision | bf16 |
|
| 39 |
+
| Thinking mode | Disabled |
|
| 40 |
| GPU | NVIDIA L4 (22 GB) |
|
| 41 |
| Framework | [Unsloth](https://unsloth.ai) + TRL SFTTrainer |
|
| 42 |
|
|
|
|
| 51 |
| [OpenAssistant/oasst_top1_2023-08-25](https://huggingface.co/datasets/OpenAssistant/oasst_top1_2023-08-25) | 2,388 | Real human multi-turn conversations |
|
| 52 |
| [HuggingFaceTB/everyday-conversations-llama3.1-2k](https://huggingface.co/datasets/HuggingFaceTB/everyday-conversations-llama3.1-2k) | 1,910 | Greetings, small talk, basic Q&A |
|
| 53 |
| [argilla/synthetic-concise-reasoning-sft](https://huggingface.co/datasets/argilla/synthetic-concise-reasoning-sft) | 535 | Short factual reasoning answers |
|
| 54 |
+
| [WizardLM/WizardLM_evol_instruct_70k](https://huggingface.co/datasets/WizardLM/WizardLM_evol_instruct_70k) | 7,000 | Casual single-turn Q&A |
|
| 55 |
+
| **Duplicates removed** | **1,992** | |
|
| 56 |
+
| **Total (after dedup)** | **9,841** | |
|
| 57 |
|
| 58 |
## Filtering Pipeline (v7)
|
| 59 |
|