You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At first, thanks for wonderful work from author, I appreciate.
I got a lot of bugs when I import keras follow authors. These bugs take me 2 hours.
We aren't supposed to install Keras separately when you use tf2. Use the Keras bundled with the Tensorflow you have installed.
Finally, I solved it.
We can change soundnet.py to this:
import numpy as np
import librosa
from tensorflow.keras.layers import BatchNormalization, Activation, Conv1D, MaxPooling1D, ZeroPadding1D, InputLayer
from tensorflow.keras.models import Sequential
The text was updated successfully, but these errors were encountered:
At first, thanks for wonderful work from author, I appreciate.
I got a lot of bugs when I import keras follow authors. These bugs take me 2 hours.
We aren't supposed to install Keras separately when you use tf2. Use the Keras bundled with the Tensorflow you have installed.
Finally, I solved it.
We can change soundnet.py to this:
import numpy as np
import librosa
from tensorflow.keras.layers import BatchNormalization, Activation, Conv1D, MaxPooling1D, ZeroPadding1D, InputLayer
from tensorflow.keras.models import Sequential
The text was updated successfully, but these errors were encountered: