Project - Classify Clothes from Fashion MNIST Dataset using Machine Learning Techniques

14 / 30

End to End ML Project - Fashion MNIST - Training the Model

As the data preparation is over, let us now train a few Machine Learning(ML) models.

We will be training the following ML models:

Softmax Regression (multi-class LogisticRegression)

RandomForestClassifier

Ensemble (with soft voting)

INSTRUCTIONS

Please perform the below steps:

(1) Import accuracy_score from SKLearn

from <<your code comes here>> import accuracy_score

(2) Import precision_score and recall_score from SKLearn

from <<your code comes here>> import precision_score, recall_score

(3) Import f1_score from SKLearn

from <<your code comes here>> import f1_score
See Answer

No hints are availble for this assesment


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...