Python不可用类型:'numpy.ndarray'

时间:2017-01-03 04:42:57

标签: python numpy

我致力于为K Nearest Neighbors制作函数。我已经分别测试了每个功能,它们都运行良好。但是,每当我将它们放在一起并运行KNN_method时,它就会显示unhashable type: 'numpy.ndarray'。 这是我的代码:

def distance(p,point):
    import numpy as np
    value = np.sqrt(sum(np.power((p-point),2)))
    return(value)

def find_neighbors(p,list_of_points, k = 3):
    import numpy as np
    distances = np.zeros(list_of_points.shape[0])
    for i in range(list_of_points.shape[0]):
        distances[i]= distance(p,list_of_points[i])
    ind = np.argsort(distances)
    return(ind[0:k])

def majority_votes(votes):
    import random
    vote_result = {}
    for key in votes:
        if key in vote_result:
            vote_result[key] += 1
        else:
            vote_result[key] = 1
    final_list = []
    for (number, vote) in vote_result.items():
        if vote == max(vote_result.values()):
            final_list.append(number)
    Winner = random.choice(final_list)
    return(Winner)


def KNN_method(p , list_of_points , outcomes , k = 3):
    ind = find_neighbors(p , list_of_points , k) 
    Final = majority_votes(outcomes[ind])
    return(Final)

1 个答案:

答案 0 :(得分:8)

首先转换为元组。

hash(tuple(np.array([1,2,3,4])))