Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Vehicle availability
#1
Hi,

New to python and machine learning and had a look at various examples, titanic, iris classification, house price regression etc.

Looking if any examples similar to below which could look to adapt and best way to approach below.

Looking for machine learning to help solve the following problem.

Problem looking to solve.
If have many vehicles which not all fully loaded, would be better if we could identify which vehicles are nearby with enough capacity
to accomodate new loads which would help reduce number of vehicles on road at any time.

Any thoughts on how best to solve above problem using python.

Thanks
Reply
#2
Rough thoughts -
Two classes, vehicle and delivery_site. Vehicle has properties of location, capacity, and current_load. Delivery_site has a location and load. Loop through list of vehicles excluding those where capacity-current_load < load, and find the vehicle that is closest.

What you use to determine "closest", gets more interesting - it would be nice to use something like the Waze database so you can have up to the minute traffic info and can use time rather than crow-flies distance, but I have no idea how to approach that.
Reply
#3
Thanks for suggestion.
Reply
#4
It sounds like what you want to look into isn't really machine learning, but optimisation.
Reply
#5
Thanks for link
Reply


Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020