diff --git a/4-Classification/3-Classifiers-2/README.md b/4-Classification/3-Classifiers-2/README.md index 48cc2329..606d7f71 100644 --- a/4-Classification/3-Classifiers-2/README.md +++ b/4-Classification/3-Classifiers-2/README.md @@ -77,9 +77,7 @@ Start by creating an array of classifiers. You will add progressively to this ar 2. Train your model using the Linear SVC and print out a report: ```python - n_classifiers = len(classifiers) - - for index, (name, classifier) in enumerate(classifiers.items()): + for name, classifier in classifiers.items(): classifier.fit(X_train, np.ravel(y_train)) y_pred = classifier.predict(X_test)