pytorch-lanenet icon indicating copy to clipboard operation
pytorch-lanenet copied to clipboard

training got error: (-215:Assertion failed)

Open Mamun130203 opened this issue 4 years ago • 5 comments

Screenshot from 2020-05-19 08-26-43

I have also tried for the sample data set that have been given in repository

Mamun130203 avatar May 19 '20 10:05 Mamun130203

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?

klintan avatar May 25 '20 05:05 klintan

the originating image size is the same as the given dataset like 1280*720

the mentioned command also provides the same error.

Mamun130203 avatar May 26 '20 13:05 Mamun130203

@Mamun130203 I have the same issue. Did you happen to fix it? I think the problem is that the image is undefined

kir486680 avatar Jan 18 '21 11:01 kir486680

check the dataset directory, if it receive the proper dataset directory, it would work.

Mamun130203 avatar Jan 19 '21 08:01 Mamun130203

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

m-alcu avatar Sep 19 '21 16:09 m-alcu