pytorch-lanenet
pytorch-lanenet copied to clipboard
training got error: (-215:Assertion failed)
I have also tried for the sample data set that have been given in repository
Could you please provide some additional information, like the size of the images you use etc ? Seems there is some issue in the resizing transformations.
Does the included example python3 lanenet/train.py --dataset ./data/training_data_example
work?
the originating image size is the same as the given dataset like 1280*720
the mentioned command also provides the same error.
@Mamun130203 I have the same issue. Did you happen to fix it? I think the problem is that the image is undefined
check the dataset directory, if it receive the proper dataset directory, it would work.
I had the same problem...
The problem is that images are not correctly fetched from folders. No image -> error
You have to run the script from home proyect with: python lanenet/tusimple_transform.py --src_dir
This changes the path to files from ../data -> ./data
After that you'll probably get another error that get fixed with: https://github.com/klintan/pytorch-lanenet/issues/13