Skip to content

Commit

Permalink
feat: add presets (#55)
Browse files Browse the repository at this point in the history
  • Loading branch information
34j authored Mar 21, 2023
1 parent 9d7a0ee commit e8adcc6
Show file tree
Hide file tree
Showing 4 changed files with 431 additions and 299 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -153,3 +153,4 @@ tests/**/*.pdf
tests/**/*.csv
*.tfevents.*
*.pt
user_gui_presets.json
Binary file modified docs/_static/gui.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
85 changes: 85 additions & 0 deletions src/so_vits_svc_fork/default_gui_presets.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
{
"Default VC (GPU, GTX 1060)": {
"silence_threshold": -35.0,
"transpose": 12.0,
"auto_predict_f0": false,
"f0_method": "dio",
"cluster_infer_ratio": 0.0,
"noise_scale": 0.4,
"pad_seconds": 0.1,
"chunk_seconds": 0.5,
"absolute_thresh": true,
"crossfade_seconds": 0.05,
"block_seconds": 0.35,
"additional_infer_before_seconds": 0.15,
"additional_infer_after_seconds": 0.1,
"realtime_algorithm": "1 (Divide constantly)",
"passthrough_original": false
},
"Default VC (CPU)": {
"silence_threshold": -35.0,
"transpose": 12.0,
"auto_predict_f0": false,
"f0_method": "dio",
"cluster_infer_ratio": 0.0,
"noise_scale": 0.4,
"pad_seconds": 0.1,
"chunk_seconds": 0.5,
"absolute_thresh": true,
"crossfade_seconds": 0.05,
"block_seconds": 1.5,
"additional_infer_before_seconds": 0.01,
"additional_infer_after_seconds": 0.01,
"realtime_algorithm": "1 (Divide constantly)",
"passthrough_original": false,
"use_gpu": false
},
"Default VC (Mobile CPU)": {
"silence_threshold": -35.0,
"transpose": 12.0,
"auto_predict_f0": false,
"f0_method": "dio",
"cluster_infer_ratio": 0.0,
"noise_scale": 0.4,
"pad_seconds": 0.1,
"chunk_seconds": 0.5,
"absolute_thresh": true,
"crossfade_seconds": 0.05,
"block_seconds": 2.5,
"additional_infer_before_seconds": 0.01,
"additional_infer_after_seconds": 0.01,
"realtime_algorithm": "1 (Divide constantly)",
"passthrough_original": false,
"use_gpu": false
},
"Default VC (Crooning)": {
"silence_threshold": -35.0,
"transpose": 12.0,
"auto_predict_f0": false,
"f0_method": "dio",
"cluster_infer_ratio": 0.0,
"noise_scale": 0.4,
"pad_seconds": 0.1,
"chunk_seconds": 0.5,
"absolute_thresh": true,
"crossfade_seconds": 0.04,
"block_seconds": 0.15,
"additional_infer_before_seconds": 0.05,
"additional_infer_after_seconds": 0.05,
"realtime_algorithm": "1 (Divide constantly)",
"passthrough_original": false
},
"Default File": {
"silence_threshold": -35.0,
"transpose": 0.0,
"auto_predict_f0": true,
"f0_method": "crepe",
"cluster_infer_ratio": 0.0,
"noise_scale": 0.4,
"pad_seconds": 0.1,
"chunk_seconds": 0.5,
"absolute_thresh": true,
"auto_play": true,
"passthrough_original": false
}
}
Loading

0 comments on commit e8adcc6

Please sign in to comment.