starkdmi commited on
Commit
87104f9
·
verified ·
1 Parent(s): 034b208

Add model card: provenance, files, precision guidance

Browse files
Files changed (1) hide show
  1. README.md +28 -1
README.md CHANGED
@@ -1,10 +1,37 @@
1
  ---
2
  license: apache-2.0
 
 
 
 
 
 
3
  ---
4
 
5
  # FRCRN SE 16K (MLX)
6
 
7
- This model was converted to MLX format from
8
  [alibabasglab/FRCRN_SE_16K](https://huggingface.co/alibabasglab/FRCRN_SE_16K).
9
 
10
  **Code:** [starkdmi/frcrn_mlx](https://github.com/starkdmi/frcrn_mlx)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
+ base_model: alibabasglab/FRCRN_SE_16K
4
+ tags:
5
+ - mlx
6
+ - audio
7
+ - audio-to-audio
8
+ - speech-enhancement
9
  ---
10
 
11
  # FRCRN SE 16K (MLX)
12
 
13
+ Speech enhancement at 16 kHz. This model was converted to MLX format from
14
  [alibabasglab/FRCRN_SE_16K](https://huggingface.co/alibabasglab/FRCRN_SE_16K).
15
 
16
  **Code:** [starkdmi/frcrn_mlx](https://github.com/starkdmi/frcrn_mlx)
17
+
18
+ ## Files
19
+
20
+ | file | size | notes |
21
+ | --- | ---: | --- |
22
+ | `model_fp32.safetensors` | 56 MB | the weights |
23
+ | `FRCRN_SE_16K.yaml` | 614 B | upstream model configuration |
24
+ | `weights.npz` | 110 MB | superseded, see below |
25
+
26
+ fp32 only; no half-precision or quantized conversion is published.
27
+
28
+ `weights.npz` predates the safetensors conversion and is kept only so that
29
+ anything already referring to it keeps working. It is not what loads: use
30
+ `model_fp32.safetensors`.
31
+
32
+ ## Use
33
+
34
+ Consumed by [AudioToolSwift](https://github.com/starkdmi) as
35
+ `ModelRepository.frcrnSE16K`, which pins this repository to an exact revision and
36
+ verifies the SHA-256 of every file it downloads. The loader reads the safetensors
37
+ and nothing else — the YAML is provided for reference.