microsoft / AutonomousDrivingCookbook

Scenarios, tutorials and demos for Autonomous Driving
MIT License
2.32k stars 566 forks source link

Is is possible to get more data? #99

Closed CrookedNoob closed 5 years ago

CrookedNoob commented 5 years ago

I have trained with my own network and it is working fine. The car is able to drive almost half the distance but after that it is not able to differentiate between the snow and the road due to the sunlight reflection on the map. Is it possible to get more data to train the network better?

mitchellspryn commented 5 years ago

Sure. You can use the python API to record more data from the front facing webcam to augment the training dataset. You'd need to add them to the data_raw folder, and modify the first notebook to pick up the new data.

CrookedNoob commented 5 years ago

@mitchellspryn Got it!! Thanks for the input!!