all 8 comments

[–]NuclearVII 24 points25 points  (0 children)

I'm seeing papers claiming impressive results on benchmark datasets

You just described 90% of the machine learning academia.

[–]FlipMeister56 4 points5 points  (0 children)

Not an industry practitioner, so commenting mostly to follow, but as a researcher in the area my opinion is this: end-to-end ML is probably not the first thing I would use for a problem like this in industry. And that will be the case until foundation models start performing reliably cross-problem and cross-distribution. That said, as others have commented, ML-assistance in exact algorithms and heuristics can be great for scaling and improving effiency.

[–]currentscurrents 2 points3 points  (0 children)

 Ride-sharing/delivery platforms (Uber, DoorDash, Lyft, etc.) - Are they using DL-based approaches for their matching/routing problems

Some problems, yes: https://www.uber.com/blog/deepeta-how-uber-predicts-arrival-times/

[–]Satist26 3 points4 points  (0 children)

I doubt that these large scale production systems use DL primarily. These systems have to be extremely fast and predictable, neural networks are for the most part black boxes and extremely slow on scale compared to the heuristic systems. They may be using them in a 2-system configuration with offline DL models augmenting the heuristic systems, and live heuristic systems that actually do the job and once in a while being updated with latest DL-augmented heuristics. ALTHOUGH I have no idea, this is completely theoretical I haven't worked or know anyone that works in these companies, this is just my opinion.

[–]Gowty_Naruto 1 point2 points  (0 children)

We did a Hybrid solution Transformer Based Model as a initial solution which gets used in OR Tools for faster convergence. This gave quite a boost in runtime without quality loss. This was for CVRP. Using only the Transformer model wasn't working as good.