Skip to content

Instantly share code, notes, and snippets.

@DoctorLoop
Created October 6, 2020 09:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DoctorLoop/41abe385934fb0f7728ba048564e26d4 to your computer and use it in GitHub Desktop.
Save DoctorLoop/41abe385934fb0f7728ba048564e26d4 to your computer and use it in GitHub Desktop.
plt.hist(baby_predictions, color='g', alpha=0.4, histtype='step', label='Babies', fill=True, linewidth=4, density=True)
plt.hist(spider_predictions, color='r', alpha=0.4, histtype='step', label='Spiders', fill=True, linewidth=4, density=True)
plt.xlabel('Predicted Height (pixels)')
plt.ylabel("Density")
plt.legend()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment