Add audiosep_metadata.json
Browse files
v1.0.0/audiosep_metadata.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_name": "AudioSep",
|
| 3 |
+
"architecture": "CLAP TextEncoder + ResUNet30 Separator",
|
| 4 |
+
"sample_rate": 32000,
|
| 5 |
+
"audio_channels": 1,
|
| 6 |
+
"stft_n_fft": 2048,
|
| 7 |
+
"stft_hop_length": 320,
|
| 8 |
+
"stft_win_length": 2048,
|
| 9 |
+
"stft_window": "hann",
|
| 10 |
+
"stft_center": true,
|
| 11 |
+
"frequency_bins": 1025,
|
| 12 |
+
"time_downsample_ratio": 32,
|
| 13 |
+
"chunk_seconds": 10.0,
|
| 14 |
+
"chunk_time_frames": 1001,
|
| 15 |
+
"mask_channels": 3,
|
| 16 |
+
"text_embedding_dim": 512,
|
| 17 |
+
"condition_dim": 512,
|
| 18 |
+
"max_token_length": 512,
|
| 19 |
+
"text_encoder_model": "AudioSep_TextEncoder",
|
| 20 |
+
"separator_model": "AudioSep_Separator",
|
| 21 |
+
"tokenizer_file": "roberta_bpe",
|
| 22 |
+
"precision": "float32",
|
| 23 |
+
"total_parameters_millions": 164.0,
|
| 24 |
+
"text_encoder_parameters_millions": 125.0,
|
| 25 |
+
"separator_parameters_millions": 39.0,
|
| 26 |
+
"output_channels": 1,
|
| 27 |
+
"license": "MIT",
|
| 28 |
+
"paper": "arXiv:2308.05037",
|
| 29 |
+
"source": "https://github.com/Audio-AGI/AudioSep"
|
| 30 |
+
}
|