Closed junaid3d closed 1 year ago
This is what ChatGPT diagnoses:
This log describes the execution and errors encountered while running a Python script for training a neural speech synthesis model. Here's a step-by-step explanation of the log:
The script is invoked using the command python.exe train_nsf_sim_cache_sid_load_pretrain.py along with various command-line arguments.
The arguments include settings for the experiment (-e "mun"), the sampling rate (-sr 40k), the frequency (-f0 0), batch size (-bs 6), GPU index (-g 0), number of training epochs (-te 20), save interval (-se 5), paths to pre-trained generator (-pg pretrained/G40k.pth) and discriminator (-pd pretrained/D40k.pth) models, and other configuration parameters.
The log provides information about the configuration settings for the training process, including hyperparameters, data specifications, and model architecture.
The script generates a warning about the deprecation of torch.nn.utils.weight_norm in favor of torch.nn.utils.parametrizations.weight_norm.
The warning mentions gin_channels and spk_embed_dim, which are specific model parameters and their values.
The log indicates that the pre-trained generator model (pretrained/G40k.pth) has been successfully loaded.
An error occurs during the training process while trying to load the latest checkpoint for the discriminator (net_d). The error message indicates that the code is attempting to access the last element of a list, but the list is empty (list index out of range).
Another error occurs while handling the previous exception. This error is related to loading the state dictionary of the generator model (net_g). The error message states that there's a size mismatch for a specific parameter (enc_p.emb_phone.weight) between the checkpoint and the current model.
Subsequent lines show HTTP requests and responses related to an API used in the script.
The log mentions that certain pre-trained model files (pretrained_v2/G40k.pth and pretrained_v2/D40k.pth) do not exist and will not be used.
In summary, the log provides information about the configuration, loading of pre-trained models, and errors encountered during the training process, specifically related to loading checkpoint files and a size mismatch in model parameters.
Hi! Did you solve it ?
When I click Train Model, I get the following errors: (I've tried using f0 pretrained model and the non f0 too)