We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ac3342 commit 709639fCopy full SHA for 709639f
tests/test_nyanko.py
@@ -16,7 +16,7 @@
16
from deepvoice3_pytorch.builder import nyanko
17
from deepvoice3_pytorch import MultiSpeakerTTSModel, AttentionSeq2Seq
18
19
-use_cuda = torch.cuda.is_available()
+use_cuda = torch.cuda.is_available() and False
20
num_mels = 80
21
num_freq = 513
22
outputs_per_step = 4
@@ -95,7 +95,7 @@ def test_incremental_correctness():
95
text_positions = np.arange(1, len(seqs[0]) + 1).reshape(1, len(seqs[0]))
96
97
mel_path = join(dirname(__file__), "data", "ljspeech-mel-00001.npy")
98
- mel = np.load(mel_path)
+ mel = np.load(mel_path)[::4]
99
max_target_len = mel.shape[0]
100
r = 1
101
mel_dim = 80
0 commit comments