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
(harry) C:\Users\Cookie\Desktop\iam>
(harry) C:\Users\Cookie\Desktop\iam>python demo_toolbox.py
C:\Users\Cookie\Desktop\iam\encoder\audio.py:13: UserWarning: Unable to import 'webrtcvad'. This package enables noise removal and is recommended.
warn("Unable to import 'webrtcvad'. This package enables noise removal and is recommended.")
Traceback (most recent call last):
File "C:\Users\Cookie\Desktop\iam\demo_toolbox.py", line 5, in
from toolbox import Toolbox
File "C:\Users\Cookie\Desktop\iam\toolbox_init_.py", line 11, in
from toolbox.ui import UI
File "C:\Users\Cookie\Desktop\iam\toolbox\ui.py", line 37, in
], dtype=np.float) / 255
File "C:\Users\Cookie\anaconda3\envs\harry\lib\site-packages\numpy_init_.py", line 284, in getattr
raise AttributeError("module {!r} has no attribute "
AttributeError: module 'numpy' has no attribute 'float'
The text was updated successfully, but these errors were encountered:
This was the standard python float object, but as mentioned, numpy.float has been deprecated... and removed in 1.24. You can either use float or pick one of the np.float32, np.float64, np.float128.
(harry) C:\Users\Cookie\Desktop\iam>
(harry) C:\Users\Cookie\Desktop\iam>python demo_toolbox.py
C:\Users\Cookie\Desktop\iam\encoder\audio.py:13: UserWarning: Unable to import 'webrtcvad'. This package enables noise removal and is recommended.
warn("Unable to import 'webrtcvad'. This package enables noise removal and is recommended.")
Traceback (most recent call last):
File "C:\Users\Cookie\Desktop\iam\demo_toolbox.py", line 5, in
from toolbox import Toolbox
File "C:\Users\Cookie\Desktop\iam\toolbox_init_.py", line 11, in
from toolbox.ui import UI
File "C:\Users\Cookie\Desktop\iam\toolbox\ui.py", line 37, in
], dtype=np.float) / 255
File "C:\Users\Cookie\anaconda3\envs\harry\lib\site-packages\numpy_init_.py", line 284, in getattr
raise AttributeError("module {!r} has no attribute "
AttributeError: module 'numpy' has no attribute 'float'
The text was updated successfully, but these errors were encountered: