зеркало из https://github.com/mozilla/TTS.git
bug fix
This commit is contained in:
Родитель
c8a548d375
Коммит
e085c4757d
3
.compute
3
.compute
|
@ -10,7 +10,8 @@ wget https://www.dropbox.com/s/wqn5v3wkktw9lmo/install.sh?dl=0 -O install.sh
|
|||
sudo sh install.sh
|
||||
python3 setup.py develop
|
||||
# cp -R ${USER_DIR}/GermanData ../tmp/
|
||||
python3 distribute.py --config_path config.json --data_path /data/ro/shared/data/keithito/LJSpeech-1.1/
|
||||
cp -R /data/ro/shared/data/keithito/LJSpeech-1.1/ ../tmp/
|
||||
python3 distribute.py --config_path config.json --data_path ../tmp/LJSpeech-1.1/
|
||||
# cp -R ${USER_DIR}/Mozilla_22050 ../tmp/
|
||||
# python3 distribute.py --config_path config_tacotron_gst.json --data_path ../tmp/Mozilla_22050/
|
||||
python3 distribute.py --config_path config.json --data_path /data/rw/home/LibriTTS/train-clean-360
|
||||
|
|
|
@ -243,6 +243,8 @@ class Decoder(nn.Module):
|
|||
|
||||
def inference(self, inputs):
|
||||
memory = self.get_go_frame(inputs)
|
||||
memory = self._update_memory(memory)
|
||||
|
||||
self._init_states(inputs, mask=None)
|
||||
|
||||
self.attention.init_win_idx()
|
||||
|
|
Загрузка…
Ссылка в новой задаче