Kamtera commited on
Commit
a2264fb
1 Parent(s): 845cd63

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +123 -0
config.json ADDED
@@ -0,0 +1,123 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "output_path": "/kaggle/working/train_output",
3
+ "logger_uri": null,
4
+ "run_name": "run",
5
+ "project_name": null,
6
+ "run_description": "\ud83d\udc38Coqui trainer run.",
7
+ "print_step": 25,
8
+ "plot_step": 100,
9
+ "model_param_stats": false,
10
+ "wandb_entity": null,
11
+ "dashboard_logger": "tensorboard",
12
+ "log_model_step": null,
13
+ "save_step": 1000,
14
+ "save_n_checkpoints": 5,
15
+ "save_checkpoints": true,
16
+ "save_all_best": false,
17
+ "save_best_after": 10000,
18
+ "target_loss": "loss",
19
+ "print_eval": true,
20
+ "test_delay_epochs": -1,
21
+ "run_eval": true,
22
+ "run_eval_steps": null,
23
+ "distributed_backend": "nccl",
24
+ "distributed_url": "tcp://localhost:54321",
25
+ "mixed_precision": false,
26
+ "epochs": 1000,
27
+ "batch_size": 64,
28
+ "eval_batch_size": 16,
29
+ "grad_clip": 4.0,
30
+ "scheduler_after_epoch": true,
31
+ "lr": 0.0001,
32
+ "optimizer": "AdamW",
33
+ "optimizer_params": {
34
+ "betas": [
35
+ 0.8,
36
+ 0.99
37
+ ],
38
+ "weight_decay": 0.0
39
+ },
40
+ "lr_scheduler": "MultiStepLR",
41
+ "lr_scheduler_params": {
42
+ "gamma": 0.5,
43
+ "milestones": [
44
+ 200000,
45
+ 400000,
46
+ 600000
47
+ ]
48
+ },
49
+ "use_grad_scaler": false,
50
+ "cudnn_enable": true,
51
+ "cudnn_deterministic": false,
52
+ "cudnn_benchmark": false,
53
+ "training_seed": 54321,
54
+ "model": "wavernn",
55
+ "num_loader_workers": 1,
56
+ "num_eval_loader_workers": 1,
57
+ "use_noise_augment": false,
58
+ "audio": {
59
+ "fft_size": 1024,
60
+ "win_length": 1024,
61
+ "hop_length": 256,
62
+ "frame_shift_ms": null,
63
+ "frame_length_ms": null,
64
+ "stft_pad_mode": "reflect",
65
+ "sample_rate": 24000,
66
+ "resample": false,
67
+ "preemphasis": 0.0,
68
+ "ref_level_db": 20,
69
+ "do_sound_norm": false,
70
+ "log_func": "np.log10",
71
+ "do_trim_silence": true,
72
+ "trim_db": 45,
73
+ "do_rms_norm": false,
74
+ "db_level": null,
75
+ "power": 1.5,
76
+ "griffin_lim_iters": 60,
77
+ "num_mels": 80,
78
+ "mel_fmin": 95,
79
+ "mel_fmax": 8000.0,
80
+ "spec_gain": 20,
81
+ "do_amp_to_db_linear": true,
82
+ "do_amp_to_db_mel": true,
83
+ "pitch_fmax": 640.0,
84
+ "pitch_fmin": 1.0,
85
+ "signal_norm": true,
86
+ "min_level_db": -100,
87
+ "symmetric_norm": true,
88
+ "max_norm": 4.0,
89
+ "clip_norm": true,
90
+ "stats_path": null
91
+ },
92
+ "eval_split_size": 10,
93
+ "data_path": "/kaggle/input/persian-tts-dataset-famale/wavs/",
94
+ "feature_path": null,
95
+ "seq_len": 1280,
96
+ "pad_short": 2000,
97
+ "conv_pad": 0,
98
+ "use_cache": true,
99
+ "wd": 0.0,
100
+ "model_args": {
101
+ "rnn_dims": 512,
102
+ "fc_dims": 512,
103
+ "compute_dims": 128,
104
+ "res_out_dims": 128,
105
+ "num_res_blocks": 10,
106
+ "use_aux_net": true,
107
+ "use_upsample_net": true,
108
+ "upsample_factors": [
109
+ 4,
110
+ 8,
111
+ 8
112
+ ],
113
+ "mode": "mold",
114
+ "mulaw": true,
115
+ "pad": 2,
116
+ "feat_dims": 80
117
+ },
118
+ "batched": true,
119
+ "target_samples": 11000,
120
+ "overlap_samples": 550,
121
+ "num_epochs_before_test": 10,
122
+ "github_branch": "inside_docker"
123
+ }