Course Name: Neural Networks in Trading, Section No: 7, Unit No: 1, Unit type: Video
Hi
I pip install Keras CV via anaconda prompt already
But I am still not able to run the below line of code:
from data_modules.Keras_CV import create_new_model
Below is the error:
ModuleNotFoundError: No module named 'data_modules'
Hi Ankit
You can try out the following:
import sys
sys.path.append("..")
from data_modules.Keras_CV import create_new_model
Thanks and Regards,
Rishabh