Automatic Speech Recognition
MLX
Safetensors
Japanese
qwen3_asr
speech-to-text
japanese
programming
asr
stt
Instructions to use holotherapper/lilfugu with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- MLX
How to use holotherapper/lilfugu with MLX:
# Download the model from the Hub pip install huggingface_hub[hf_xet] huggingface-cli download --local-dir lilfugu holotherapper/lilfugu
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- LM Studio
- Atomic Chat
Upload README.md with huggingface_hub
Browse files
README.md
CHANGED
|
@@ -66,6 +66,7 @@ Note: Existing Japanese ASR benchmarks are not designed to properly evaluate Jap
|
|
| 66 |
| [lilfugu](https://huggingface.co/holotherapper/lilfugu) (this) | 4.1 GB | MLX bfloat16 |
|
| 67 |
| [lilfugu-8bit](https://huggingface.co/holotherapper/lilfugu-8bit) | 2.8 GB | MLX 8bit quantized |
|
| 68 |
| [lilfugu-transformers](https://huggingface.co/holotherapper/lilfugu-transformers) | 4.1 GB | safetensors fp16 (CUDA/Linux) |
|
|
|
|
| 69 |
| [lilfugu-lora](https://huggingface.co/holotherapper/lilfugu-lora) | ~49 MB | LoRA adapter |
|
| 70 |
|
| 71 |
See also: [lilfugu-experimental](https://huggingface.co/holotherapper/lilfugu-experimental) — higher term accuracy, but may over-convert in some cases.
|
|
@@ -94,9 +95,9 @@ model = load("holotherapper/lilfugu-8bit")
|
|
| 94 |
### CUDA / Linux
|
| 95 |
|
| 96 |
```python
|
| 97 |
-
from qwen_asr import
|
| 98 |
|
| 99 |
-
model =
|
| 100 |
result = model.transcribe("audio.wav")
|
| 101 |
```
|
| 102 |
|
|
|
|
| 66 |
| [lilfugu](https://huggingface.co/holotherapper/lilfugu) (this) | 4.1 GB | MLX bfloat16 |
|
| 67 |
| [lilfugu-8bit](https://huggingface.co/holotherapper/lilfugu-8bit) | 2.8 GB | MLX 8bit quantized |
|
| 68 |
| [lilfugu-transformers](https://huggingface.co/holotherapper/lilfugu-transformers) | 4.1 GB | safetensors fp16 (CUDA/Linux) |
|
| 69 |
+
| [lilfugu-transformers-8bit](https://huggingface.co/holotherapper/lilfugu-transformers-8bit) | 2.2 GB | bitsandbytes int8 (CUDA/Linux) |
|
| 70 |
| [lilfugu-lora](https://huggingface.co/holotherapper/lilfugu-lora) | ~49 MB | LoRA adapter |
|
| 71 |
|
| 72 |
See also: [lilfugu-experimental](https://huggingface.co/holotherapper/lilfugu-experimental) — higher term accuracy, but may over-convert in some cases.
|
|
|
|
| 95 |
### CUDA / Linux
|
| 96 |
|
| 97 |
```python
|
| 98 |
+
from qwen_asr import Qwen3ASRModel
|
| 99 |
|
| 100 |
+
model = Qwen3ASRModel.from_pretrained("holotherapper/lilfugu-transformers")
|
| 101 |
result = model.transcribe("audio.wav")
|
| 102 |
```
|
| 103 |
|