This code helps you classify different clothing attire using softmax regression.
You can install Conda for python which resolves all the dependencies for machine learning.
Softmax Regression (synonyms: Multinomial Logistic, Maximum Entropy Classifier, or just Multi-class Logistic Regression) is a generalization of logistic regression that we can use for multi-class classification (under the assumption that the classes are mutually exclusive). In contrast, we use the (standard) Logistic Regression model in binary classification tasks.
For more information, see
- Dataset- fashiom MNIST dataset
- Images of size 28 X 28
- Classify clothes :
- T - shirt / top
- Trouser
- Pullover
- Dress
- Coat
- Sandal
- Shirt
- Sneaker
- Bag
- Ankleboot
- Logistic Regression
- Shallow Network
- Deep Network.
To run the code, type python fashion.py
python fashion.py