Table of Contents
Problem Definition
- Mainly focus on product retrieval in Walmart -> match the query and products
- To solve the problem of product retrieval, the key is to assess the relevance between a query and a product. I
- Two stage model
- retrieval
- re-ranking
Methods
- All implementation based on tensorflow ranking
- Pair-wise loss has a better performance than pointwise loss
- Our neural retrieval model in Section 3 is closely related to CLSM and DSSM.
- In this section we propose three different models:
- A simple bag-of-token model based directly on tokens in query and product,
- a neural text model which can incorporate semantic similarity between query and product, and
- lastly a customized neural text model which is more optimized for retrieval.
- Labels: Note that though we are optimizing for order rate, we did not use order rate as label for training because order data is sparser compared with click data.
- Position bias
- a simple click model
TODO & Questions & Further Reading
- TF ranking
- An Introduction to Neural Information Retrieval