Answers for "apply function to output of scikit learn model"

0

predict method sklearn

from sklearn import neighbors, datasets
iris = datasets.load_iris()
X, y = iris.data, iris.target
knn = neighbors.KNeighborsClassifier(n_neighbors=1)
knn.fit(X, y)
# What kind of iris has 3cm x 5cm sepal and 4cm x 2cm petal?
print(iris.target_names[knn.predict([[3, 5, 4, 2]])])
Posted by: Guest on September-02-2020
0

sklearn - check the name of a machine learning

# Define the model
model1 = LogisticRegression()

# Check the name of the model
# It is useful when we are dealing with many alternative models
model1.__class__.__name__
Posted by: Guest on September-10-2020

Code answers related to "apply function to output of scikit learn model"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language