holotherapper commited on
Commit
4bdec9f
·
verified ·
1 Parent(s): 9f4e65f

Upload README.md with huggingface_hub

Browse files
Files changed (1) hide show
  1. README.md +3 -2
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 Qwen3ASR
98
 
99
- model = Qwen3ASR.from_pretrained("holotherapper/lilfugu-transformers")
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