-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
end point for item based recommendation #48
Comments
I think there are two parts to this.
The first is a bit more complex as a new external and internal API would need to be defined to handle item recommendations as opposed to user recommendations. However, the second is actually probably easier as there are already item similarity examples. The python code already supports several types of similarity models : gensim_lsi,gensim_lda,gensim_rp,sklearn_nmf So as a hack you could always build an above document similarity model and serve recommendations by sending in the item_id with any user_id (as it will be ignored) |
https://docs.seldon.io/en/latest/content-recommendation-example.html this link is not active @cliveseldon many docs link are invalid |
@pnutmath This project is now deprecated. |
Okay thanks for response :) , let's archived it! Can you suggested me where I can start with seldom for recommendation engine? |
At Seldon we focus on general ML deployment so you can look at https://github.com/SeldonIO/seldon-core but the model you want to deploy is up to you. We do have many people using it for recommendations though. |
Thanks @cliveseldon |
is it possible to have a RESTFUL api end point that returns a list of items based on one item?
e.g GET /items/{item_id}/recommendations
thank you
The text was updated successfully, but these errors were encountered: