Test your knowledge
Now that you have worked through some extended examples of training fastai recommender systems, you can try some variations to exercise what you've learned.
Getting ready
Ensure that you have followed the Training a recommender system on a standalone dataset recipe. In this section, you will be adapting the notebook worked through in that recipe to create a recommender system for a new standalone dataset.
How to do it…
You can follow the steps in this section to try some variations on the recommender system that you trained with the Amazon product dataset in the Training a recommender system on a standalone dataset recipe:
- Make a copy of the
training_recommender_systems_on_standalone_dataset.ipynb
notebook that you worked through in the Training a recommender system on a standalone dataset recipe. Give your new copy of the notebook the following name:training_recommender_systems_on_new_standalone_dataset.ipynb
. - Review the description...