Created
November 3, 2021 01:21
-
-
Save mrdbourke/e0b82c52a1b374a108a47ce21c7f4835 to your computer and use it in GitHub Desktop.
Class names of FashionMNIST in Python list form (same order as original FashionMNIST)
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
# List of FashionMNIST labels, source: https://github.com/zalandoresearch/fashion-mnist | |
class_names = ["T-shirt/top", | |
"Trouser", | |
"Pullover", | |
"Dress", | |
"Coat", | |
"Sandal", | |
"Shirt", | |
"Sneaker", | |
"Bag", | |
"Ankle boot" | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment