Automatic Speech Recognition
Transformers
Safetensors
GGUF
Arabic
English
qwen3_asr
asr
speech-recognition
arabic
arabic-asr
dialectal-arabic
emirati
gulf-arabic
streaming
realtime
llama-cpp
audar
custom_code
conversational
Instructions to use audarai/Audar-ASR-V1-Turbo with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use audarai/Audar-ASR-V1-Turbo with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("automatic-speech-recognition", model="audarai/Audar-ASR-V1-Turbo", trust_remote_code=True) messages = [ {"role": "user", "content": "Who are you?"}, ] pipe(messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("audarai/Audar-ASR-V1-Turbo", trust_remote_code=True) model = AutoModelForMultimodalLM.from_pretrained("audarai/Audar-ASR-V1-Turbo", trust_remote_code=True, device_map="auto") messages = [ {"role": "user", "content": "Who are you?"}, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- llama.cpp
How to use audarai/Audar-ASR-V1-Turbo with llama.cpp:
Install (macOS, Linux)
curl -LsSf https://llama.app/install.sh | sh # Start a local OpenAI-compatible server with a web UI: llama serve -hf audarai/Audar-ASR-V1-Turbo:Q4_K_M # Run inference directly in the terminal: llama cli -hf audarai/Audar-ASR-V1-Turbo:Q4_K_M
Install from WinGet (Windows)
winget install llama.cpp # Start a local OpenAI-compatible server with a web UI: llama serve -hf audarai/Audar-ASR-V1-Turbo:Q4_K_M # Run inference directly in the terminal: llama cli -hf audarai/Audar-ASR-V1-Turbo:Q4_K_M
Use pre-built binary
# Download pre-built binary from: # https://github.com/ggerganov/llama.cpp/releases # Start a local OpenAI-compatible server with a web UI: ./llama-server -hf audarai/Audar-ASR-V1-Turbo:Q4_K_M # Run inference directly in the terminal: ./llama-cli -hf audarai/Audar-ASR-V1-Turbo:Q4_K_M
Build from source code
git clone https://github.com/ggerganov/llama.cpp.git cd llama.cpp cmake -B build cmake --build build -j --target llama-server llama-cli # Start a local OpenAI-compatible server with a web UI: ./build/bin/llama-server -hf audarai/Audar-ASR-V1-Turbo:Q4_K_M # Run inference directly in the terminal: ./build/bin/llama-cli -hf audarai/Audar-ASR-V1-Turbo:Q4_K_M
Use Docker
docker model run hf.co/audarai/Audar-ASR-V1-Turbo:Q4_K_M
- LM Studio
- Jan
- Ollama
How to use audarai/Audar-ASR-V1-Turbo with Ollama:
ollama run hf.co/audarai/Audar-ASR-V1-Turbo:Q4_K_M
- Unsloth Studio
How to use audarai/Audar-ASR-V1-Turbo with Unsloth Studio:
Install Unsloth Studio (macOS, Linux, WSL)
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for audarai/Audar-ASR-V1-Turbo to start chatting
Install Unsloth Studio (Windows)
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for audarai/Audar-ASR-V1-Turbo to start chatting
Using HuggingFace Spaces for Unsloth
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for audarai/Audar-ASR-V1-Turbo to start chatting
- Docker Model Runner
How to use audarai/Audar-ASR-V1-Turbo with Docker Model Runner:
docker model run hf.co/audarai/Audar-ASR-V1-Turbo:Q4_K_M
- Lemonade
How to use audarai/Audar-ASR-V1-Turbo with Lemonade:
Pull the model
# Download Lemonade from https://lemonade-server.ai/ lemonade pull audarai/Audar-ASR-V1-Turbo:Q4_K_M
Run and chat with the model
lemonade run user.Audar-ASR-V1-Turbo-Q4_K_M
List all available models
lemonade list
- Atomic Chat
Rebrand custom-code filenames to *_audar_asr.py (auto_map rewired; Qwen3-ASR arch identifiers + Apache-2.0 headers preserved)
Browse files
vllm-w4a16/__init__.py
CHANGED
|
@@ -13,6 +13,6 @@
|
|
| 13 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 14 |
# See the License for the specific language governing permissions and
|
| 15 |
# limitations under the License.
|
| 16 |
-
from .
|
| 17 |
-
from .
|
| 18 |
-
from .
|
|
|
|
| 13 |
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 14 |
# See the License for the specific language governing permissions and
|
| 15 |
# limitations under the License.
|
| 16 |
+
from .configuration_audar_asr import Qwen3ASRConfig
|
| 17 |
+
from .modeling_audar_asr import Qwen3ASRForConditionalGeneration
|
| 18 |
+
from .processing_audar_asr import Qwen3ASRProcessor
|
vllm-w4a16/config.json
CHANGED
|
@@ -3,9 +3,9 @@
|
|
| 3 |
"Qwen3ASRForConditionalGeneration"
|
| 4 |
],
|
| 5 |
"auto_map": {
|
| 6 |
-
"AutoConfig": "
|
| 7 |
-
"AutoModel": "
|
| 8 |
-
"AutoModelForCausalLM": "
|
| 9 |
},
|
| 10 |
"dtype": "bfloat16",
|
| 11 |
"eos_token_id": 151645,
|
|
|
|
| 3 |
"Qwen3ASRForConditionalGeneration"
|
| 4 |
],
|
| 5 |
"auto_map": {
|
| 6 |
+
"AutoConfig": "configuration_audar_asr.Qwen3ASRConfig",
|
| 7 |
+
"AutoModel": "modeling_audar_asr.Qwen3ASRForConditionalGeneration",
|
| 8 |
+
"AutoModelForCausalLM": "modeling_audar_asr.Qwen3ASRForConditionalGeneration"
|
| 9 |
},
|
| 10 |
"dtype": "bfloat16",
|
| 11 |
"eos_token_id": 151645,
|
vllm-w4a16/{configuration_qwen3_asr.py → configuration_audar_asr.py}
RENAMED
|
File without changes
|
vllm-w4a16/{modeling_qwen3_asr.py → modeling_audar_asr.py}
RENAMED
|
@@ -40,7 +40,7 @@ from transformers.utils import auto_docstring, can_return_tuple
|
|
| 40 |
from transformers.utils.deprecation import deprecate_kwarg
|
| 41 |
from transformers.utils.generic import TransformersKwargs, check_model_inputs
|
| 42 |
|
| 43 |
-
from .
|
| 44 |
Qwen3ASRAudioEncoderConfig,
|
| 45 |
Qwen3ASRConfig,
|
| 46 |
Qwen3ASRThinkerConfig,
|
|
|
|
| 40 |
from transformers.utils.deprecation import deprecate_kwarg
|
| 41 |
from transformers.utils.generic import TransformersKwargs, check_model_inputs
|
| 42 |
|
| 43 |
+
from .configuration_audar_asr import (
|
| 44 |
Qwen3ASRAudioEncoderConfig,
|
| 45 |
Qwen3ASRConfig,
|
| 46 |
Qwen3ASRThinkerConfig,
|
vllm-w4a16/{processing_qwen3_asr.py → processing_audar_asr.py}
RENAMED
|
File without changes
|