Hi, nicknochnack
I tried clone and run your code.
I have Intel Mac Pro <2019> then I have no GPU. So, I edit your code for install libs and GPU option
!pip install tensorflow opencv-python matplotlib sentencepiece keras
!pip install torch transformers text2sql
tf.config.list_physical_devices('CPU')
#tf.config.list_physical_devices('GPU')
AS-IS : error
new_model = load_model('imageclassifier.h5')
TO-BE
new_model = load_model('models/imageclassifier.h5')
Is it right?
Thanks