1. CRS Models as a Whole#
After installing RecWizard, we quickly load an existing Converstional Recommender Bot using a model name as follows:
from recwizard import AutoModel
unicrs_model = AutoModel.from_pretrained('Unicrs-redial')
unicrs_model.response("Recommend me some popular and classic movies, \
I like <entity> Titanic </entity>.")
We input the conversation history and get the results from the pre-trained UniCRS model on ReDIAL dataset.
'I would like to recommend The Shawshank Redemption (1994) to you!'
We can find more shared CRS model cards in our resource section.