DeepLearningExamples/PyTorch/SpeechSynthesis/Tacotron2/notebooks/README.md

50 lines
1.4 KiB
Markdown
Raw Normal View History

2019-09-03 18:40:29 +02:00
# Tacotron2 and WaveGlow
A jupyter notobook based on Quick Start Guide of: https://github.com/NVIDIA/DeepLearningExamples/tree/master/PyTorch/SpeechSynthesis/Tacotron2
2019-09-19 05:31:17 +02:00
## Requirements
Ensure you have the following components:
NVIDIA Docker (https://github.com/NVIDIA/nvidia-docker) PyTorch 19.06-py3+ NGC container or newer (https://ngc.nvidia.com/catalog/containers/nvidia:pytorch) NVIDIA Volta (https://www.nvidia.com/en-us/data-center/volta-gpu-architecture/) or Turing (https://www.nvidia.com/en-us/geforce/turing/) based GPU
2019-09-19 05:31:17 +02:00
Before running the Jupyter notebook, please make sure you already git clone the code from the Github:
```bash
git clone https://github.com/NVIDIA/DeepLearningExamples.git
2019-09-19 05:31:17 +02:00
cd DeepLearningExamples/PyTorch/SpeechSynthesis/Tacotron2
2019-09-19 05:31:17 +02:00
```
Copy the Tacotron2.ipynb file into the folder 'Tacotron2'
```bash
cp notebooks/Tacotron2.ipynb .
```
2019-09-19 05:31:17 +02:00
2019-09-03 18:40:29 +02:00
### Running the quick start guide as a Jupyter notebook
To run the notebook on you local machine:
2019-09-19 05:31:17 +02:00
```bash
jupyter notebook Tacotron2.ipynb
```
To run the notebook remotely:
2019-09-03 18:40:29 +02:00
```bash
jupyter notebook --ip=0.0.0.0 --allow-root
```
And navigate a web browser to the IP address or hostname of the host machine at port `8888`:
2019-09-03 18:40:29 +02:00
```
http://[host machine]:8888
```
Use the token listed in the output from running the `jupyter` command to log in, for example:
2019-09-03 18:40:29 +02:00
```
http://[host machine]:8888/?token=aae96ae9387cd28151868fee318c3b3581a2d794f3b25c6b
```