Open sskadit opened 7 years ago
Same here
Fixed it with np.where:
mask[np.where((ym - y1) * (x2 - x1) - (y2 - y1) * (xm - x1) > 0)] = 1
hy, so you were able to run the project? i'm getting an error that says it was unable to create model-001.h5 (trained model). i have opened an issue regarding this as well. can you help? after first epoch is complete and, it says it was unable to create the file. no such file or directory
same here
Fixed it with np.where: mask[np.where((ym - y1) (x2 - x1) - (y2 - y1) (xm - x1) > 0)] = 1
mask[np.where(ym - y1) (x2 - x1) - (y2 - y1) (xm - x1) > 0] = 1 TypeError: can't multiply sequence by non-int of type 'float'
My colleague had this problem and this is because the images generated by the Udacity simulator now have different sizes. In the utils.py the authors of this repo set the image height and width on the 6th line. In the code it is 66 and 200. But the images that are generated are now 160X320, so just change this in the utils.py.
Hello Siraj thanks a lot for wonderful video but there is an error coming while training the dataset.