MLClassifierExample#
- class MLClassifierExample(*values)#
Bases:
EnumSet of example machine learning classifiers.
This class serves as a convenient registry for common Scikit-Learn models. It is typically used in conjunction with the
MLClassificationPerformance.See also
MLClassificationPerformanceEvaluation based on machine learning classification performance.
Attributes
Random Forest.
Logistic Regression.
Support Vector Machine.
Decision Tree.
K-Nearest Neighbors.
- RF = RandomForestClassifier()#
Random Forest.
- LOG = LogisticRegression(max_iter=1000)#
Logistic Regression.
- SVM = SVC()#
Support Vector Machine.
- DT = DecisionTreeClassifier()#
Decision Tree.
- KNN = KNeighborsClassifier()#
K-Nearest Neighbors.