Last active
February 22, 2020 18:49
-
-
Save dpoulopoulos/2d33f61d00d0a5b60bee92bf417f60a6 to your computer and use it in GitHub Desktop.
Visualize the recall@10 for movielens dataset, using Step.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| avgs = moving_avg(recalls, 5000) | |
| plt.title('Recall@10') | |
| plt.xlabel('Iterations') | |
| plt.ylabel('Metric') | |
| plt.ylim(0., .1) | |
| plt.plot(avgs) | |
| plt.show() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment