Singhp08 commited on
Commit
cb6a5ad
·
verified ·
1 Parent(s): 926bb58

Update models/elvish/config.json

Browse files
Files changed (1) hide show
  1. models/elvish/config.json +30 -26
models/elvish/config.json CHANGED
@@ -1,35 +1,39 @@
1
  {
2
- "model_name": "elvish_rvc",
3
- "sample_rate": 16000,
4
- "hop_length": 160,
5
- "f0": true,
6
- "f0_method": "rmvpe",
7
- "embedder_model": "hubert_base",
8
- "index_rate": 0.75,
9
- "device": "auto",
10
- "use_half_precision": false,
11
-
12
- "audio_settings": {
13
- "trim_silence": true,
14
- "normalize": true,
15
- "max_audio_length": 300
16
  },
17
-
18
- "inference_settings": {
19
- "protect": 0.5,
 
20
  "filter_radius": 3,
21
- "resample_sr": 16000
 
 
 
 
 
 
 
 
22
  },
23
 
24
- "hf_space_compatibility": {
25
- "gradio_version": "4.x",
26
- "torch_mode": "auto",
27
- "safe_mode": true
 
28
  },
29
 
30
- "error_handling": {
31
- "ignore_missing_index": false,
32
- "fallback_to_cpu": true,
33
- "auto_repair_audio": true
 
34
  }
35
  }
 
1
  {
2
+ "model_settings": {
3
+ "model_name": "elvish_rvc",
4
+ "version": "v2",
5
+ "sample_rate": 16000,
6
+ "f0_method": "rmvpe",
7
+ "hop_length": 128,
8
+ "crepe_hop_length": 160
 
 
 
 
 
 
 
9
  },
10
+
11
+ "inference_parameters": {
12
+ "pitch_shift": -4,
13
+ "index_rate": 0.85,
14
  "filter_radius": 3,
15
+ "rms_mix_rate": 0.25,
16
+ "protect_voiceless": 0.33,
17
+ "resample_sr": 0
18
+ },
19
+
20
+ "tts_settings": {
21
+ "engine": "edge-tts",
22
+ "voice": "hi-IN-MadhurNeural",
23
+ "proxy": null
24
  },
25
 
26
+ "paths": {
27
+ "model_path": "models/elvish/elvish.pth",
28
+ "index_path": "models/elvish/elvish.index",
29
+ "hubert_path": "hubert_base.pt",
30
+ "rmvpe_path": "rmvpe.pt"
31
  },
32
 
33
+ "ui_settings": {
34
+ "theme": "Soft",
35
+ "primary_hue": "blue",
36
+ "status": "ONLINE",
37
+ "build": "Stable-2026"
38
  }
39
  }