Uber Eats의 배달예상시간(ETA) 후보정 모델 DeepETANet 정리

Excerpt

  • Abstrct

    • Commonly used route planning algorithms predict an ETA conditioned on the best available route, but such ETA estimates can be unreliable when the actual route taken is not known in advance. In this paper, we describe an ETA post-processing system in which a deep residual ETA network (DeeprETA) refines naive ETAs produced by a route planning algorithm.
  • Contribution

    • ETA Post-processing: Our problem formulation, described in section 3, which treats programmatic ETAs from a route planner as noisy estimates of true arrival times, is unique in the travel-time estimation literature.
    • DeeprETANet Architecture: A deep learning architecture for ETA post-processing, described in section 4, that im- proves ETA accuracy compared to strong regression base- lines while adding minimal incremental serving latency.
    • Multi-resolution Geospatial Embeddings. A scheme for embedding geospatial location information using multiple independent hash functions for each spatial resolution,
  • Objective

    • DeeprETA post-processing system aims at predicting the ATA by estimating a residual that added on top of the routing engine ETA
  • Architecture

    • In DeeprETANet we learn the feature interactions via the linear self-attention, which is a sequence-to-sequence operation that takes in a sequence of vectors and produces a re-weighted sequence of vectors.
    • The DeeprETANet is a wide and shallow network with only two layers besides of the embedding layer. The first layer is a linear transformer layer and the second layer is a fully connected layer with calibration. The first linear transformer layer aims to learn the interaction of geospatial and temporal embeddings. The second calibration layer aims to adjust bias from various request types.
    • Loss Function
      • While for evaluating delivery ETA requests, not only the mean absolute ETA error, but also the 95th quantile is important. Extreme ETA errors will result in bad user experiences. Therefore, to meet di- verse business goals, DeeprETA uses a customized loss function, asymmetric Huber loss , which is robust to outliers and can balance a range of commonly used point estimates metrics

Thoughts

  • Organization구조가 실험환경으로 크게 작용하였다. 배차조직과, 시간예측 조직이 긴밀하게 붙어 있었던 것같다. 물론 그렇지 않아도 상관없지만 실험환경상 고려할 필요는 있었다.
  • Doordash와 달리 Ride Hailing 서비스도 제공하고 있기 때문에, 이 부분을 고려할 필요는 있다.
  • Linear Attention을 이용해서 Feature간 Interaction을 고려하였다. Intraction 및 성능을 동시에 고려한 부분이었다,
  • Loss Function은 Doordash도 그렇고 Long Tail을 고려하였다.

Link

-DeeprETA: An ETA Post-processing System at Scale

Read more

내가 놓치고 있던 미래, 먼저 온 미래를 읽고

내가 놓치고 있던 미래, 먼저 온 미래를 읽고

장강명 작가의 책은, 유학시절 읽고 처음이었다. 유학시절 "한국이 싫어서"라는 책은 동기부여가 상당히 되는 책이었다. 한국을 떠나 새로운 정채성을 학생으로서 Build up 해나가고 있던 상황에서 이 책은 제목부터 꽤 솔깃하였다. 물론 결말이 기억날 정도로 인상깊은 책은 아니었지만 말이다. 그렇게 시간이 흘러 장강명 작가의 책은 더 이상 읽지 않던

By Bongho, Lee
고객 경험이란 무엇일까?

고객 경험이란 무엇일까?

고객경험이란 무엇일까? 1. 과거 어느 대형 프로젝트에서 있던 일이다. 신사업을 위해서 예측 모델 값을 제공해야 하는 상황이었다. 데이터도 없고,어느정도의 정확도를 제공해야 하는지 답이 없었다. 점추정을 할 것인가? 구간 추정을 할 것인가를 가지고 논의중이었다. Product Manager 줄기차게 고객경험을 내세우며 점추정으로 해야 한다고 주장하였다. 근거는 오롯이 "고객 경험"이었다.

By Bongho, Lee
수요예측, 수정구슬이 아닌 목표를 향한 냉정한 나침반

수요예측, 수정구슬이 아닌 목표를 향한 냉정한 나침반

수요예측의 정의와 비즈니스에서의 중요성 기업의 성장과 운영 효율화를 위해 **수요예측(Demand Forecasting)**은 선택이 아닌 필수 요소로 자리 잡았다. 많은 경영진들이 수요예측을 미래 판매량을 정확히 맞히는 '예언'으로 기대하지만, 이는 수요예측의 본질을 오해하는 것이다. 수요예측의 진짜 의미: 미래를 점치는 수정구슬이 아니라, 우리가 도달해야 할 '목표'를

By Bongho, Lee