Edresson commited on
Commit
8a499b8
·
1 Parent(s): 24aa3b4
Experiments/nohup.out CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:727e666f0e289f86ca58dcf46faaba4347ba4799d62fe60eeefd9739daf8fe62
3
- size 19979813
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8f900a64d95cbee91b33fea537e02ee42497dff715b5a891cac133e2fa36f359
3
+ size 33938
Experiments/run/events.out.tfevents.1706446227.edresson-train-80.140666.0 CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:2dbebb73a9d4e96fe89873113cee21e48574382222383449d52025f68b0c5a69
3
- size 23272486
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9de94954b621c69e6a27f8b8716391b2501dc4d4600bbfaba8ff1206440b3ec6
3
+ size 29499037
Experiments/runs/YourTTS-Syntacc-PT-January-28-2024_09+50AM-5f5841de1/best_model.pth CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8b394ea7d1a2198de58ecb634d94b94fa9557f9c4f04d044151c4f4a20e0e4c4
3
  size 1044057262
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9928c98c074a9e5e49d1682804c1becaf4d6ff4a4b9f0ac5b9b54ad632d60ed
3
  size 1044057262
Experiments/runs/YourTTS-Syntacc-PT-January-28-2024_09+50AM-5f5841de1/{best_model_88131.pth → best_model_88444.pth} RENAMED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8b394ea7d1a2198de58ecb634d94b94fa9557f9c4f04d044151c4f4a20e0e4c4
3
  size 1044057262
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9928c98c074a9e5e49d1682804c1becaf4d6ff4a4b9f0ac5b9b54ad632d60ed
3
  size 1044057262
Experiments/runs/YourTTS-Syntacc-PT-January-28-2024_09+50AM-5f5841de1/trainer_0_log.txt CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:f8670285256c38d945110ecffa7267a964b2717b6178836749114970c3d6ee14
3
- size 107553
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:48b3c577b4e482e0f8e07145d399182677596aeef70a7b0380c3e8ec5988ddd0
3
+ size 129375
Experiments/train_syntacc.py CHANGED
@@ -22,13 +22,13 @@ torch.set_num_threads(24)
22
  CURRENT_PATH = os.path.dirname(os.path.abspath(__file__))
23
 
24
  # Name of the run for the Trainer
25
- RUN_NAME = "YourTTS-Syntacc-PT"
26
 
27
  # Path where you want to save the models outputs (configs, checkpoints and tensorboard logs)
28
  OUT_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), "runs") # "/raid/coqui/Checkpoints/original-YourTTS/"
29
 
30
  # If you want to do transfer learning and speedup your training you can set here the path to the CML-TTS available checkpoint that cam be downloaded here: https://drive.google.com/u/2/uc?id=1yDCSJ1pFZQTHhL09GMbOrdjcPULApa0p
31
- RESTORE_PATH = "/raid/datasets/MUPE/Experiments/runs/YourTTS-Syntacc-PT-January-25-2024_02+59PM-0000000/checkpoint_85000.pth" # Download the checkpoint here: https://drive.google.com/u/2/uc?id=1yDCSJ1pFZQTHhL09GMbOrdjcPULApa0p
32
 
33
  # This paramter is useful to debug, it skips the training epochs and just do the evaluation and produce the test sentences
34
  SKIP_TRAIN_EPOCH = False
@@ -221,6 +221,8 @@ audio_config = VitsAudioConfig(
221
 
222
  # Init VITSArgs setting the arguments that are needed for the YourTTS model
223
  model_args = VitsArgs(
 
 
224
  spec_segment_size=62,
225
  hidden_channels=192,
226
  hidden_channels_ffn_text_encoder=768,
 
22
  CURRENT_PATH = os.path.dirname(os.path.abspath(__file__))
23
 
24
  # Name of the run for the Trainer
25
+ RUN_NAME = "YourTTS-Syntacc-PT_continue"
26
 
27
  # Path where you want to save the models outputs (configs, checkpoints and tensorboard logs)
28
  OUT_PATH = os.path.join(os.path.dirname(os.path.abspath(__file__)), "runs") # "/raid/coqui/Checkpoints/original-YourTTS/"
29
 
30
  # If you want to do transfer learning and speedup your training you can set here the path to the CML-TTS available checkpoint that cam be downloaded here: https://drive.google.com/u/2/uc?id=1yDCSJ1pFZQTHhL09GMbOrdjcPULApa0p
31
+ RESTORE_PATH = "/raid/datasets/MUPE/Experiments/runs/YourTTS-Syntacc-PT-January-28-2024_09+50AM-5f5841de1/best_model_88444.pth" # Download the checkpoint here: https://drive.google.com/u/2/uc?id=1yDCSJ1pFZQTHhL09GMbOrdjcPULApa0p
32
 
33
  # This paramter is useful to debug, it skips the training epochs and just do the evaluation and produce the test sentences
34
  SKIP_TRAIN_EPOCH = False
 
221
 
222
  # Init VITSArgs setting the arguments that are needed for the YourTTS model
223
  model_args = VitsArgs(
224
+ inference_noise_scale=0.33,
225
+ inference_noise_scale_dp=0.33,
226
  spec_segment_size=62,
227
  hidden_channels=192,
228
  hidden_channels_ffn_text_encoder=768,
Experiments/train_syntacc_baseline.py CHANGED
@@ -221,6 +221,8 @@ audio_config = VitsAudioConfig(
221
 
222
  # Init VITSArgs setting the arguments that are needed for the YourTTS model
223
  model_args = VitsArgs(
 
 
224
  spec_segment_size=62,
225
  hidden_channels=192,
226
  hidden_channels_ffn_text_encoder=768,
 
221
 
222
  # Init VITSArgs setting the arguments that are needed for the YourTTS model
223
  model_args = VitsArgs(
224
+ inference_noise_scale=0.33,
225
+ inference_noise_scale_dp=0.33,
226
  spec_segment_size=62,
227
  hidden_channels=192,
228
  hidden_channels_ffn_text_encoder=768,