Open Wemmons831 opened 2 years ago
Hello I am unaware if this is normal behavior but whenever I train Tacotron the line model = load_model(hparams) in train.py takes upwards of 30 minutes to execute. has anyone else encountered this behavior.
model = load_model(hparams)
loading dummy data to cuda such as torch.randn(2).to(device) seems to lower down the loading times slightly
torch.randn(2).to(device)
Hello I am unaware if this is normal behavior but whenever I train Tacotron the line
model = load_model(hparams)
in train.py takes upwards of 30 minutes to execute. has anyone else encountered this behavior.