mirror of https://github.com/coqui-ai/TTS.git
update TF model notebook
parent
8e6aedccee
commit
342d6303d4
|
@ -228,4 +228,4 @@ class Decoder(keras.layers.Layer):
|
||||||
def call(self, memory, states, frames=None, memory_seq_length=None, training=False):
|
def call(self, memory, states, frames=None, memory_seq_length=None, training=False):
|
||||||
if training:
|
if training:
|
||||||
return self.decode(memory, states, frames, memory_seq_length)
|
return self.decode(memory, states, frames, memory_seq_length)
|
||||||
return self.decode_inference(memory, states)
|
return self.decode_inference(memory, states)
|
||||||
|
|
|
@ -10,15 +10,14 @@
|
||||||
"\n",
|
"\n",
|
||||||
"Before running this script please DON'T FORGET: \n",
|
"Before running this script please DON'T FORGET: \n",
|
||||||
"- to set file paths.\n",
|
"- to set file paths.\n",
|
||||||
"- to download related model files from TTS and PWGAN.\n",
|
"- to download related model files.\n",
|
||||||
"- download or clone related repos, linked below.\n",
|
"- download or clone related repos, linked below.\n",
|
||||||
"- setup the repositories. ```python setup.py install```\n",
|
"- setup the repositories. ```python setup.py install```\n",
|
||||||
"- to checkout right commit versions (given next to the model) of TTS and PWGAN.\n",
|
"- to checkout right commit versions (given next to the model in the models page).\n",
|
||||||
"- to set the right paths in the cell below.\n",
|
"- to set the file paths below.\n",
|
||||||
"\n",
|
"\n",
|
||||||
"Repositories:\n",
|
"Repositories:\n",
|
||||||
"- TTS: https://github.com/mozilla/TTS\n",
|
"- TTS: https://github.com/mozilla/TTS"
|
||||||
"- PWGAN: https://github.com/erogol/ParallelWaveGAN"
|
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
@ -151,7 +150,8 @@
|
||||||
"cell_type": "code",
|
"cell_type": "code",
|
||||||
"execution_count": null,
|
"execution_count": null,
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"Collapsed": "false"
|
"Collapsed": "false",
|
||||||
|
"scrolled": true
|
||||||
},
|
},
|
||||||
"outputs": [],
|
"outputs": [],
|
||||||
"source": [
|
"source": [
|
||||||
|
|
Loading…
Reference in New Issue