What I’m trying to do:
Hello everyone! I’m trying to implement a GUI interface to a series of ML models that I have already trained.
What I’ve tried and what’s not working:
I’ve trained the model using tensorflow/keras and I saw on the docs that Keras was an available library but I am having trouble accessing it. I don’t know if this a user-side error or a system-wide error and any comment would be appreciated. The following error occurs when I try to import keras:
Code Sample:
## This is on my server side code
import keras
ImportError: Keras requires TensorFlow 2.2 or higher. Install TensorFlow via `pip install tensorflow
Thank you everyone!