Il prossimoProssima guida
L'intelligenza artificiale nell'ottimizzazione della catena di fornitura
Industrie
GUIDA alle industrie
AI in last-mile delivery uses optimization algorithms and machine learning to decide which driver carries which parcels, in what order to visit stops, and when each delivery will arrive.
It matters because the final leg to the doorstep is often the most expensive part of shipping. Small routing gains save fuel, time and emissions across millions of stops.
Routing delivery vehicles is a textbook case of the vehicle routing problem (VRP), a generalization of the traveling salesman problem. Given a depot, a fleet and a set of stops, the goal is routes that minimize total cost while meeting constraints. These include vehicle capacity, driver shift length, customer time windows, and sometimes pairs of pickups and deliveries. The problem is NP-hard: exact solutions become impractical as the number of stops grows, so real systems rely on heuristics (rules of thumb that find good, not guaranteed-best, answers). Classic methods include the Clarke-Wright savings algorithm from 1964 and local-search moves such as 2-opt, which untangles route segments that cross. Modern solvers, including open-source tools like Google's OR-Tools, combine these with metaheuristics that explore many candidate solutions. UPS's ORION system, rolled out in the 2010s, is a well-known example. It optimizes the order of each driver's stops. UPS is also known for a long-standing preference for routes that avoid left turns across traffic where practical, trading slightly longer distances for less idling and fewer risky turns. Machine learning adds prediction on top of optimization. Models estimate travel times by time of day, service time at each stop (finding parking, climbing stairs, getting a signature), and the chance a delivery fails. In 2021 Amazon and MIT ran a research challenge asking teams to learn the routes experienced drivers actually prefer, because the mathematically shortest route isn't always the one that works on the street. Food and grocery apps face a harder, dynamic version. Orders arrive all the time, so dispatch decides in real time which courier gets which order and whether to bundle orders, balancing speed against keeping couriers busy. A common misconception is that routing is just shortest-path navigation. Navigation finds a road path between two points. Route optimization decides the order and assignment of hundreds of stops.
Il contesto del settore determina se le idee dell’intelligenza artificiale sopravvivono al contatto con la realtà.
I vincoli di dominio influenzano i tassi di errore accettabili e i modelli di supervisione.
Le implementazioni di successo allineano le capacità tecniche con i flussi di lavoro in prima linea.
Routing is a mature field, so progress will likely be gradual: better predictions of travel and service time, learned heuristics that speed up solvers, and closer links to how arrival windows are communicated to customers. Electric delivery vans add constraints such as range and charging stops. Experiments with sidewalk robots, drones and parcel lockers change the problem by adding new vehicle types and handoff points, though how widely they are used varies a lot by location. Through all of this, the core stays the same: accurate predictions feeding a good optimizer, with drivers' local knowledge still valuable.
Overnight, a parcel carrier's planning system splits the next day's packages among its vans, respecting each vehicle's capacity and customers' delivery windows.
A food delivery platform gives one courier two orders from the same restaurant when predicted cooking and travel times mean both will still arrive warm.
A grocery delivery service predicts arrival times using past data on how long drivers take to park and walk to apartment doors, not just time on the road.
When a road closes mid-shift, dynamic re-routing reorders one driver's remaining stops instead of recomputing the plan for the whole fleet.
I requisiti normativi possono invalidare prototipi altrimenti robusti.
I dati storici possono codificare pregiudizi che danneggiano comunità specifiche.
I sistemi legacy possono creare colli di bottiglia nell’integrazione e costi nascosti.
Coinvolgere esperti del settore dall'inquadramento del problema alla valutazione.
Progettare audit trail e documentazione prima del lancio.
Convalidare tempestivamente la conformità e gli obblighi di sicurezza.
Implementazione in fasi con chiari criteri di stop e rollback.
Free newsletter
Three verified AI stories every weekday morning, written in plain English. Free forever, no ads.
One email each weekday. Unsubscribe in one click. We never sell or share your address.
Test yourself
Instant feedback on every answer, and a shareable certificate with a verifiable ID once you pass a course.
Support free AI education. AI Understanding is a 501(c)(3) nonprofit — no ads, no paywall, ever. Make a donation
AI in last-mile delivery uses optimization algorithms and machine learning to decide which driver carries which parcels, in what order to visit stops, and when each delivery will arrive. It matters because the final leg to the doorstep is often the most expensive part of shipping. Small routing gains save fuel, time and emissions across millions of stops.
The VRP extends the traveling salesman problem to multiple vehicles with capacities, time windows and other constraints.
Because the VRP is NP-hard, the computation needed for exact answers grows explosively. Heuristics find good solutions within practical time limits.
2-opt removes two edges and reconnects the route the other way, which untangles crossings and usually shortens the route.
The challenge asked teams to model the routes drivers really take, because the mathematically shortest route does not always work in practice.
Service time is the time spent at each stop apart from driving. It is hard to predict and a major source of arrival-time error, so ML models estimate it per address.
Continua a imparare
Altre guide selezionate per questo argomento
Il prossimoProssima guida
L'intelligenza artificiale nell'ottimizzazione della catena di fornitura
Industrie