FlashSR
Bu Soniqo sayfası, yerel speech-swift / speech-core uygulamasındaki FlashSR modelini belgeler. Hugging Face bundle bağlantıları entegrasyon notlarından sonra yer alır.
Önce dahili sayfa
Açılış kartları ve belge menüleri önce buraya yönlenir; kaynak model ve bundle bağlantıları bu sayfada kalır.
Özet
| Model | FlashSR |
|---|---|
| Rol | Audio super-resolution for low-bandwidth or lossy audio |
| Backend | MLX int4 default; int8 available |
| Çıktı | 48 kHz mono waveform, same length as input |
| Diller | Audio-content agnostic |
| Lisans | MIT |
| Durum | Ready through speech upsample and the FlashSR Swift product |
| Kaynak | FlashSR / AudioSR distillation |
| Swift ürünü | FlashSR |
| CLI / runtime | speech upsample |
Kullanım
Aşağıdaki parça, speech-swift deposundaki güncel API veya komutla eşleşir.
# Upsample a low-bandwidth recording to 48 kHz mono.
.build/release/speech upsample noisy_lowres.wav \
--variant int4 \
-o clean_hr.wav
Model bağlantıları
Uygulama notları
- Download requests the single model.safetensors bundle and config explicitly; this is simple enough that byte-weighting is less critical than for sharded models.
- Input is resampled to 48 kHz mono and processed in non-overlapping 5.12 second windows.
- INT4 is a download-size optimization; runtime weights dequantize to FP, so memory footprint matches int8.
- The model conforms to SpeechEnhancementModel, but its semantics are super-resolution rather than denoising.