Created
October 17, 2020 07:35
-
-
Save satishgunjal/f58643f2bc8b2409d319dc87d189b2e6 to your computer and use it in GitHub Desktop.
Shape of training nad test data
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
# Shape of training nad test data | |
print(f'Shape of train_images: {train_images.shape}') | |
print(f'Shape of train_labels: {train_labels.shape}') | |
print(f'Shape of test_images: {test_images.shape}') | |
print(f'Shape of test_labels: {test_labels.shape}') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment