简体   繁体   English

clf在机器学习中是什么意思?

[英]What does clf mean in machine learning?

When doing fitting, I always come across code like在进行拟合时,我总是遇到这样的代码

clf = svm.SVC(kernel='linear', C=1).fit(X_train, y_train)

(from http://scikit-learn.org/stable/modules/cross_validation.html#k-fold ) (来自http://scikit-learn.org/stable/modules/cross_validation.html#k-fold

What does clf stand for? clf代表什么? I googled around but didn't find any clues.我用谷歌搜索但没有找到任何线索。

In the scikit-learn tutorial , it's short for classifier.:scikit-learn教程中,它是 classifier. 的缩写:

We call our estimator instance clf , as it is a classifier.我们称我们的估计器实例为clf ,因为它是一个分类器。

In the link you provided, clf refers to classifier.在您提供的链接中, clf 指的是分类器。

You can write svm_model or any easy name at place of of clf for better understanding.您可以在 clf 的位置编写 svm_model 或任何简单的名称,以便更好地理解。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 在机器学习中用列的均值插补缺失值 - Impute missing values with mean of column in machine learning 这是什么:机器学习中的(冒号)Python? - What are this : (colons) in Machine Learning with Python? clf.score(X_train,Y_train)在决策树中评估什么? - What does clf.score(X_train,Y_train) evaluate in decision tree? TF-IDF如何产生用于机器学习的功能? 一袋文字有什么不同? - How does TF-IDF produce features for machine-learning ? What is different from a bag of words? 非平稳性是什么意思以及如何在强化学习中将其作为 10 臂强盗问题来实现? - What does non-stationarity mean and how to implement it in reinforcement learning as 10 arm bandit problem? Keras 强化学习中的问号是什么意思,我该如何复制它? - What does the question mark mean in Keras Reinforcement Learning and how can I replicate it? 这些机器学习输出文件的目的和意义是什么? - What is the purpose and meaning of these machine learning output files? 什么算法适合这种简单的机器学习问题? - What algorithms are suitable for this simple machine learning problem? 在机器学习中混洗如何与 ImageDataGenerator 一起工作? - How does shuffling work with ImageDataGenerator in Machine Learning? 机器学习算法在哪里存储结果? - Where does machine learning algorithme store the result?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM