A simple baseline of UISEE Self-Driving Competition.
- Add submit testing. training and submit by excute
python submit.py
- Build a faster dataset, save images to
npy
files. - Add more data augmentation, random resize, crop, rotate, ...
- Add pretraining datasets.
- Git clone this repo.
- Download the competition dataset from uisee.com & unzip it under
data
folder and rename it touisee
(for more datasets supporting) - Use
tiff2npy
to convert and resizetiff
images tonpy
files - Baseline model is a simple 2D CNN + LSTM model, DIY your own model and adjust the Hyper Parameters in the
config.py
file, then start training. this_repo/submit.txt
will be generated by excutingsubmit.py
.