Skip to content

Instantly share code, notes, and snippets.

@amirhfarzaneh
Created February 23, 2018 09:03
Show Gist options
  • Save amirhfarzaneh/42d587fd873ba75d4b65140424d33249 to your computer and use it in GitHub Desktop.
Save amirhfarzaneh/42d587fd873ba75d4b65140424d33249 to your computer and use it in GitHub Desktop.
print ("number of training examples = " + str(train_data.shape[0]))
print ("number of evaluation examples = " + str(eval_data.shape[0]))
print ("X_train shape: " + str(train_data.shape))
print ("Y_train shape: " + str(train_labels.shape))
print ("X_test shape: " + str(eval_data.shape))
print ("Y_test shape: " + str(eval_labels.shape))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment