Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

numpy tile parameter bug #8

Open
Khaled1337 opened this issue Feb 10, 2019 · 0 comments
Open

numpy tile parameter bug #8

Khaled1337 opened this issue Feb 10, 2019 · 0 comments

Comments

@Khaled1337
Copy link

Khaled1337 commented Feb 10, 2019

Line 59 in util.py
raw_audio = np.tile(raw_audio, length/raw_audio.shape[0] + 1)
Should be
raw_audio = np.tile(raw_audio, length//raw_audio.shape[0] + 1)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant