Upload config files
Browse files- config.json +7 -0
- preprocessor_config.json +6 -0
config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"model_type": "wav2vec2",
|
3 |
+
"architectures": ["WavLMForXVector"],
|
4 |
+
"hidden_size": 512,
|
5 |
+
"num_mel_bins": 80,
|
6 |
+
"embedding_size": 512
|
7 |
+
}
|
preprocessor_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"feature_extractor_type": "Wav2Vec2FeatureExtractor",
|
3 |
+
"sampling_rate": 16000,
|
4 |
+
"do_normalize": true,
|
5 |
+
"return_attention_mask": false
|
6 |
+
}
|