Skip to content

Instantly share code, notes, and snippets.

@dpoulopoulos
Last active February 22, 2020 18:49
Show Gist options
  • Select an option

  • Save dpoulopoulos/2d33f61d00d0a5b60bee92bf417f60a6 to your computer and use it in GitHub Desktop.

Select an option

Save dpoulopoulos/2d33f61d00d0a5b60bee92bf417f60a6 to your computer and use it in GitHub Desktop.
Visualize the recall@10 for movielens dataset, using Step.
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