Undergraduate student at Princeton University.
Based on work done freshman summer. Used GCP to train a model that implements product search with Tensorflow API. Used data from online stores as training and testing data. Used embeddings, feature extraction and sentence encoding as input to the Tensorflow model.
Below is an extremely high level view of the model.
https://github.com/rah4927/search
Created a neural network N(q, w)
that takes a query q
and a product w
and outputs a score based on the likelihood of them being correlated.
For a given query q
, sort N(q, w)
over all products w
. This is our initial search engine.