I installed Tensorflow packages but it gives an error like this:
I also upgraded tensorflow version in case:
Related
I have just upgraded tensorflow to the 2.11.0 version but I am having issues while importing packages.
In particular, while importing the 'compat' and the 'keras' modules I got the following errors:
import tensorflow.compat.v2 as tf
ModuleNotFoundError: No module named 'tensorflow.compat'
from tensorflow import keras
ImportError: cannot import name 'keras' from 'tensorflow' (unknown location)
What can be the reason of these import errors? I never had them before but I had to upgrade to the 2.11.0
I have tryied to unistall and re-install but I always get the same issue.
I need the 2.11.0 since otherwise I have issues with the 'build' method for optimizers in the tf.keras.optimizers module
I tried running these three lines of code.
!pip install git+https://github.com/tensorflow/examples.git
import tensorflow_datasets as tfds
from tensorflow_examples.models.pix2pix import pix2pix
And it ended up in this error:
ModuleNotFoundError: No module named 'tensorflow_examples'
I tried running the solution from No module named 'tensorflow_examples' after installing
I am also running on a virtual environment.
I pip installed pytorch_tabnet and when i try to import the ClassificationSMOTE class existing in the package augmentations i got this error: ModuleNotFoundError: No module named 'pytorch_tabnet.augmentations'
PS: i am working with the latest version of pytorch_tabnet 3.1.1 in google colab.
from pytorch_tabnet.augmentations import ClassificationSMOTE
If the problem is that a module cannot be found, try to install the missing module into your running environment.
e.g.:
pip install git+https://github.com/dreamquark-ai/tabnet
I installed RetinaFace and TensorFlow for my project and when I run, this error appear. for RetinaFace I should use TensorFlow with 2.1.0 version and for this I cant upgrade or downgrade it.
I reinstall and install TensorFlow for several time but it doesn't fix my issue.
python: 3.6.0
TensorFlow: 2.1.0
RetinaFace: 0.0.6
on windows
ModuleNotFoundError: No module named 'tensorflow.python.tools'; 'tensorflow.python' is not a package
this version of TensorFlow is available from python3.7 up
I'm using Tensorflow 2.0 but getting error while executing train.py.
from tensorflow.contrib.memory_stats.python.ops.memory_stats_ops import BytesInUse
ModuleNotFoundError: No module named 'tensorflow.contrib'
can anyone please help me with finding tf.contrib module in tensorflow2.0
tensorflow.contrib is being removed in version 2.0, you therefore need version <= 1.14 to operate tflearn (by the way, this is a TFlearn issue, not a tensorflow one). (source)