作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个自定义距离度量,需要用于 KNN
, K Nearest Neighbors
.
我试过关注 this ,但由于某种原因我无法让它工作。
我会假设距离度量应该采用两个长度相同的向量/数组,如下所示:
import sklearn
from sklearn.neighbors import NearestNeighbors
import numpy as np
import pandas as pd
def d(a,b,L):
# Inputs: a and b are rows from a data matrix
return a+b+2+L
knn=NearestNeighbors(n_neighbors=1,
algorithm='auto',
metric='pyfunc',
func=lambda a,b: d(a,b,L)
)
X=pd.DataFrame({'b':[0,3,2],'c':[1.0,4.3,2.2]})
knn.fit(X)
knn.kneighbors()
,好像不太喜欢自定义函数。这是错误堆栈的底部:
ValueError: Unknown metric pyfunc. Valid metrics are ['euclidean', 'l2', 'l1', 'manhattan', 'cityblock', 'braycurtis', 'canberra', 'chebyshev', 'correlation', 'cosine', 'dice', 'hamming', 'jaccard', 'kulsinski', 'mahalanobis', 'matching', 'minkowski', 'rogerstanimoto', 'russellrao', 'seuclidean', 'sokalmichener', 'sokalsneath', 'sqeuclidean', 'yule', 'wminkowski'], or 'precomputed', or a callable
sklearn version 0.14
上进行这项工作的任何想法?我不知道版本之间有任何差异。
最佳答案
The documentation实际上很清楚使用 metric 参数:
metric : string or callable, default ‘minkowski’
metric to use for distance computation. Any metric from scikit-learn or scipy.spatial.distance can be used.
If metric is a callable function, it is called on each pair of instances (rows) and the resulting value recorded. The callable should take two arrays as input and return one value indicating the distance between them. This works for Scipy’s metrics, but is less efficient than passing the metric name as a string.
metric
应该是可调用的,而不是字符串。它应该接受两个参数(数组),并返回一个。哪个是您的
lambda
功能。
import sklearn
from sklearn.neighbors import NearestNeighbors
import numpy as np
import pandas as pd
def d(a,b,L):
return a+b+2+L
knn=NearestNeighbors(n_neighbors=1,
algorithm='auto',
metric=lambda a,b: d(a,b,L)
)
X=pd.DataFrame({'b':[0,3,2],'c':[1.0,4.3,2.2]})
knn.fit(X)
关于scikit-learn - 如何允许 sklearn K 最近邻采用自定义距离度量?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34408027/
我是一名优秀的程序员,十分优秀!