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
Tensorflow does not offer 1.13.2 anymore for installation, manual WHL file supports Python 3.7.x at max, and my Ubuntu Studio has 3.8.5 installed. So it seems I can't install the right version of Tensorflow. Version 2 does not work because I get:
AttributeError: module 'tensorflow' has no attribute 'placeholder_with_default
The text was updated successfully, but these errors were encountered:
Just to update, I made a separate installation for Python 3.7.9 so I could install Tensorflow 1.13.2. Now already when I try to initiate : "from tool_class import *" I get this error from several lines: "ModuleNotFoundError: No module named 'numba.decorators'" altough pip3.7 reports that numba 0.51.2 is installed.
With python 3.8.5 (which has Tensorflow 2.3.1 installed) the tool_class import command passes fine but the error that I first reported is encountered on :"tool = SoundSampleTool('model_general')"
It's mysterious though why this command run ok if I run python 3.8.5 instead of 3.7.9
Anyway, I downgraded Numba to 0.49.1 and now I got past these two steps at least. It seems some of the import formatting should be changed for the code to work on recent versions.
(btw it's 25 years since I coded the last time, now I'm just a musician who would like to play with this cool new thing!)
Tensorflow does not offer 1.13.2 anymore for installation, manual WHL file supports Python 3.7.x at max, and my Ubuntu Studio has 3.8.5 installed. So it seems I can't install the right version of Tensorflow. Version 2 does not work because I get:
AttributeError: module 'tensorflow' has no attribute 'placeholder_with_default
The text was updated successfully, but these errors were encountered: