From dc7cd1ae5bf3815262bdadc3537646e2b6928c88 Mon Sep 17 00:00:00 2001 From: Grzegorz Karch Date: Fri, 7 Jun 2019 08:27:52 -0700 Subject: [PATCH] updated readme --- PyTorch/SpeechSynthesis/Tacotron2/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/PyTorch/SpeechSynthesis/Tacotron2/README.md b/PyTorch/SpeechSynthesis/Tacotron2/README.md index 4ff44401..53c7da57 100644 --- a/PyTorch/SpeechSynthesis/Tacotron2/README.md +++ b/PyTorch/SpeechSynthesis/Tacotron2/README.md @@ -153,7 +153,7 @@ and `--waveglow` arguments. To run inference issue: ```bash -python inference.py --tacotron2 --waveglow -o output/ -i text.txt --fp16-run +python inference.py --tacotron2 --waveglow -o output/ -i phrase.txt --fp16-run ``` The speech is generated from text file passed with `-i` argument. To run inference in mixed precision, use `--fp16-run` flag. The output audio will @@ -310,11 +310,11 @@ To benchmark the inference performance on a batch size=1, run: * For FP32 ```bash - python inference.py --tacotron2 --waveglow -o output/ --include-warmup --log-file=output/nvlog_fp32.json + python inference.py --tacotron2 --waveglow -o output/ --include-warmup -i phrase.txt --log-file=output/nvlog_fp32.json ``` * For FP16 ```bash - python inference.py --tacotron2 --waveglow -o output/ --include-warmup --fp16-run --log-file=output/nvlog_fp16.json + python inference.py --tacotron2 --waveglow -o output/ --include-warmup -i phrase.txt --fp16-run --log-file=output/nvlog_fp16.json ``` The output log files will contain performance numbers for Tacotron 2 model @@ -455,7 +455,7 @@ Results are measured in the number of input tokens per second. |Number of GPUs|Mixed precision tokens/sec|FP32 tokens/sec|Speed-up with mixed precision| |---:|---:|---:|---:| -|**1**|130|150|0.87| +|**1**|132|153|0.86| This table shows the inference performance results for WaveGlow. @@ -463,7 +463,7 @@ Results are measured in the number of output audio samples per second.11With sampling rate equal to 22050, one second of audio is generated from 22050 samples.