Skip to content

Commit

Permalink
small fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
erogol committed Apr 12, 2021
1 parent a7f6045 commit b11d1cb
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 9 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ deps: ## install 🐸 requirements.
pip install -r requirements.txt

test: ## run tests.
nosetests --with-cov -cov --cover-erase --cover-package TTS tests
nosetests -x --with-cov -cov --cover-erase --cover-package TTS tests
./run_bash_tests.sh

style: ## update code style.
Expand Down
4 changes: 0 additions & 4 deletions TTS/bin/train_vocoder_wavernn.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@

# from torch.utils.data.distributed import DistributedSampler

<<<<<<< HEAD

=======
>>>>>>> reformat

use_cuda, num_gpus = setup_torch_training_env(True, True)

Expand Down
4 changes: 0 additions & 4 deletions TTS/tts/tf/models/tacotron2.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,7 @@ def __init__(
bidirectional_decoder=False,
enable_tflite=False,
):
<<<<<<< HEAD
super(Tacotron2, self).__init__()
=======
super().__init__()
>>>>>>> reformat
self.r = r
self.decoder_output_dim = decoder_output_dim
self.postnet_output_dim = postnet_output_dim
Expand Down

0 comments on commit b11d1cb

Please sign in to comment.