Azwad Abid
Azwad Abid
Changed from: default='/data/' to default='data/' at line 55 of test.py. Can access the files now.
Was getting this error before: cv2.polylines(img, [poly.reshape((-1, 1, 2))], True, color=(0, 0, 255), thickness=2) TypeError: Layout of the output array img is incompatible with cv::Mat (step[ndims-1] != elemsize or step[1]...
I am able to make it work and train the network on Windows after using the following packages. I am using tensorflow-gpu==1.14.0 but many might not have gpu. So, I...
Fixed the following errors: (1) ImportError: cannot import name '_obtain_input_shape' (2) TypeError: _obtain_input_shape() got an unexpected keyword argument 'include_top'
Keras 2.2 had a minor change. Before: from keras.applications.imagenet_utils import _obtain_input_shape After: from keras_applications.imagenet_utils import _obtain_input_shape The code is working for me after making the change.