Scikit-learn Introduction
- Scikit-learn介紹
https://ithelp.ithome.com.tw/articles/10204845
https://ithelp.ithome.com.tw/articles/10204920 - Scikit-learn介紹 - Feature Engineering
https://ithelp.ithome.com.tw/articles/10205475 - Scikit-learn介紹 - Bayes Classification
https://ithelp.ithome.com.tw/articles/10205582Usage of Scikit-learn
sklearn.linear_model.Perceptron
Usage:
from sklearn.linear_model import Perceptron |
https://scikit-learn.org/stable/modules/generated/sklearn.linear_model.Perceptron.html
Example of Perceptron:
https://scikit-learn.org/stable/auto_examples/applications/plot_out_of_core_classification.html#sphx-glr-auto-examples-applications-plot-out-of-core-classification-py
sklearn.metrics.accuracy_score
This function computes subset accuracy: the set of labels predicted for a sample must exactly match the corresponding set of labels in y_true.
from sklearn.metrics import accuracy_score |
https://scikit-learn.org/stable/modules/generated/sklearn.metrics.accuracy_score.html