Hello! I'm trying to run your code, but I can't create a training model.
I executed the code below.
python main.py -n cnn -t cnn -tt app -m train
And I found the error below.
Traceback (most recent call last): File "main.py", line 212, in <module> (trainer, model), data, label_encoder = main() File "main.py", line 18, in main X_train, y_train, X_val, y_val, X_test, y_test = load_data(config) File "main.py", line 151, in load_data (tmpX, tmpy) = load(filename) File "C:\Users\USer\PycharmProjects\tensorflowProject\KimythAnly\utils.py", line 25, in load data = pk.load(f) _pickle.UnpicklingError: invalid load key, '\xd4'.
I think it's a path problem. I changed 138 lines of 'directory' to my data path. Is there a solution?
Thanks!