Skip to content

Instantly share code, notes, and snippets.

@coreyauger
Created May 10, 2018 17:12
Show Gist options
  • Save coreyauger/4285a5bdcc8b8991a001a5af8f0edc74 to your computer and use it in GitHub Desktop.
Save coreyauger/4285a5bdcc8b8991a001a5af8f0edc74 to your computer and use it in GitHub Desktop.
plot training examples
def plotTrainingExample(te):
plt.plot(range(len(te)),te)
plt.show()
plotTrainingExample(data[INDEX_OF_EXAMPLE,:])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment