本文简要介绍python语言中 sklearn.svm.NuSVR
的用法。
用法:
class sklearn.svm.NuSVR(*, nu=0.5, C=1.0, kernel='rbf', degree=3, gamma='scale', coef0=0.0, shrinking=True, tol=0.001, cache_size=200, verbose=False, max_iter=- 1)
Nu 支持向量回归。
与 NuSVC 类似,对于回归,使用参数 nu 来控制支持向量的数量。但是,与 NuSVC 不同,这里 nu 替换 C,这里 nu 替换了epsilon-SVR 的参数 epsilon。
该实现基于 libsvm。
在用户指南中阅读更多信息。
- nu:浮点数,默认=0.5
训练误差分数的上限和支持向量分数的下限。应该在 (0, 1] 区间内。默认取 0.5。
- C:浮点数,默认=1.0
误差项的惩罚参数 C。
- kernel:{‘linear’, ‘poly’, ‘rbf’, ‘sigmoid’, ‘precomputed’} 或可调用,默认='rbf'
指定要在算法中使用的内核类型。如果没有给出,将使用‘rbf’。如果给定了可调用对象,则它用于预先计算内核矩阵。
- degree:整数,默认=3
多项式核函数的度数 (‘poly’)。被所有其他内核忽略。
- gamma:{‘scale’, ‘auto’} 或浮点数,默认='scale'
‘rbf’, ‘poly’ 和 ‘sigmoid’ 的核系数。
- 如果
gamma='scale'
(默认)被传递,那么它使用 1 /(n_features * X.var()) 作为伽玛值, - 如果‘auto’,使用 1 /n_features。
- 如果
- coef0:浮点数,默认=0.0
核函数中的独立项。仅在‘poly’和‘sigmoid’中有意义。
- shrinking:布尔,默认=真
是否使用收缩启发式。请参阅用户指南。
- tol:浮点数,默认=1e-3
停止标准的容差。
- cache_size:浮点数,默认=200
指定内核缓存的大小(以 MB 为单位)。
- verbose:布尔,默认=假
启用详细输出。请注意,此设置利用了 libsvm 中的 per-process 运行时设置,如果启用,该设置可能无法在多线程上下文中正常工作。
- max_iter:整数,默认=-1
求解器内迭代的硬限制,或 -1 表示无限制。
- class_weight_:ndarray 形状 (n_classes,)
每个类的参数 C 的乘数。根据
class_weight
参数计算。coef_
ndarray 形状 (1, n_features)kernel="linear"
时分配给特征的权重。- dual_coef_:ndarray 形状 (1, n_SV)
决策函数中支持向量的系数。
- fit_status_:int
如果正确安装,则为 0,否则为 1(将发出警告)
- intercept_:ndarray 形状 (1,)
决策函数中的常数。
- n_features_in_:int
拟合期间看到的特征数。
- feature_names_in_:ndarray 形状(
n_features_in_
,) 拟合期间看到的特征名称。仅当
X
具有全为字符串的函数名称时才定义。n_support_
ndarray 形状 (n_classes,), dtype=int32每个类的支持向量数。
- shape_fit_:int 形状的元组 (n_dimensions_of_X,)
训练向量
X
的数组维度。- support_:ndarray 形状 (n_SV,)
支持向量的索引。
- support_vectors_:ndarray 形状(n_SV,n_features)
支持向量。
参数:
属性:
参考:
例子:
>>> from sklearn.svm import NuSVR >>> from sklearn.pipeline import make_pipeline >>> from sklearn.preprocessing import StandardScaler >>> import numpy as np >>> n_samples, n_features = 10, 5 >>> np.random.seed(0) >>> y = np.random.randn(n_samples) >>> X = np.random.randn(n_samples, n_features) >>> regr = make_pipeline(StandardScaler(), NuSVR(C=1.0, nu=0.1)) >>> regr.fit(X, y) Pipeline(steps=[('standardscaler', StandardScaler()), ('nusvr', NuSVR(nu=0.1))])
相关用法
- Python sklearn NuSVC用法及代码示例
- Python sklearn NeighborhoodComponentsAnalysis用法及代码示例
- Python sklearn NearestNeighbors用法及代码示例
- Python sklearn NMF用法及代码示例
- Python sklearn Nystroem用法及代码示例
- Python sklearn NearestCentroid用法及代码示例
- Python sklearn NearestNeighbors.radius_neighbors用法及代码示例
- Python sklearn Normalizer用法及代码示例
- Python sklearn NotFittedError用法及代码示例
- Python sklearn NearestNeighbors.kneighbors用法及代码示例
- Python sklearn NearestNeighbors.radius_neighbors_graph用法及代码示例
- Python sklearn NearestNeighbors.kneighbors_graph用法及代码示例
- Python sklearn jaccard_score用法及代码示例
- Python sklearn WhiteKernel用法及代码示例
- Python sklearn CalibrationDisplay.from_predictions用法及代码示例
- Python sklearn VotingRegressor用法及代码示例
- Python sklearn gen_batches用法及代码示例
- Python sklearn ExpSineSquared用法及代码示例
- Python sklearn MDS用法及代码示例
- Python sklearn adjusted_rand_score用法及代码示例
- Python sklearn MLPClassifier用法及代码示例
- Python sklearn train_test_split用法及代码示例
- Python sklearn RandomTreesEmbedding用法及代码示例
- Python sklearn GradientBoostingRegressor用法及代码示例
- Python sklearn GridSearchCV用法及代码示例
注:本文由纯净天空筛选整理自scikit-learn.org大神的英文原创作品 sklearn.svm.NuSVR。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。