Spaces:
Runtime error
Runtime error
NTT123
commited on
Commit
•
7f3b282
1
Parent(s):
1ed5cdf
no more clip
Browse files- tacotron.py +0 -1
tacotron.py
CHANGED
@@ -371,7 +371,6 @@ class Tacotron(pax.Module):
|
|
371 |
x = x[:, : self.rr, :]
|
372 |
x = jnp.reshape(x, (N, self.rr, -1))
|
373 |
mel = x[..., :-1]
|
374 |
-
mel = jnp.clip(mel, a_min=None, a_max=1.6)
|
375 |
eos = x[..., -1]
|
376 |
return attn_state, decoder_rnn_states, rng_key, (mel, eos)
|
377 |
|
|
|
371 |
x = x[:, : self.rr, :]
|
372 |
x = jnp.reshape(x, (N, self.rr, -1))
|
373 |
mel = x[..., :-1]
|
|
|
374 |
eos = x[..., -1]
|
375 |
return attn_state, decoder_rnn_states, rng_key, (mel, eos)
|
376 |
|