- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到了无法对数组进行排序的问题。我收到此错误具有多个元素的数组的真值不明确。使用 a.any() 或 a.all()
到底为什么会发生这种情况?我不明白。是因为平局吗?我已经解决这个问题有一段时间了,但无法解决。
import matplotlib.pyplot as plt
import numpy as np
from sklearn.metrics import accuracy_score
from sklearn import datasets, metrics, svm
from sklearn.model_selection import train_test_split
from collections import Counter
from math import sqrt
#import number data
digits = datasets.load_digits()
images_and_labels = list(zip(digits.images, digits.target))
n_samples = len(digits.images)
data = digits.images.reshape((n_samples, -1))
data_train, data_test, label_train, label_test = train_test_split(data, digits.target, test_size=0.2)
def euclidean_distance(first, second):
distance = 0.0
for i in range(64):
distance += (first[i] - second[i])**2
return np.sqrt(distance)
def get_neighbors(train_set, test_set, num_neighbors):
distances = list()
for test_set in train_set:
dist = euclidean_distance(test_set, train_set)
distances.append((train_set, dist))
np.sort(distances)
neighbors = list()
for i in range(num_neighbors):
neighbors.append(distances[i][0])
return neighbors
results = get_neighbors(data_train, data_test, 100 )
最佳答案
在这一行:
np.sort(distances)
distances 是一个元组列表 - 每个元组包含一对 numpy 数组。例如:
>>> distances[0]
(array([[ 0., 0., 6., ..., 0., 0., 0.],
[ 0., 3., 13., ..., 0., 0., 0.],
[ 0., 0., 0., ..., 16., 7., 0.],
...,
[ 0., 0., 1., ..., 16., 5., 0.],
[ 0., 1., 13., ..., 1., 0., 0.],
[ 0., 0., 1., ..., 14., 6., 0.]]),
array([54.40588203, 51.7107339 , 58.72818744, 83.80930736, 77.37570678,
58.25804665, 54.18486874, 54.47935389, 54.40588203, 52.13444159,
73.54590403, 87.35559513, 79.01898506, 66.55824517, 54.61684722,
54.56189146, 54.40588203, 50.55689864, 78.65748534, 74.60562981,
74.37741593, 72.70488292, 55.08175742, 54.41507144, 54.40588203,
49.43682838, 76.51143705, 70.9577339 , 75.94076639, 65.90902821,
56.90342696, 54.40588203, 54.40588203, 55.06359959, 73.06161783,
73.71566998, 82.50454533, 70. , 54. , 54.40588203,
54.40588203, 53.10367219, 75.16648189, 78.7273777 , 74.06753675,
67.00746227, 55.6596802 , 54.40588203, 54.40588203, 52.5832673 ,
68.82586723, 80.74651695, 74.24957912, 72.9725976 , 56.59505279,
53.8702144 , 54.40588203, 52.06726419, 61.10646447, 83.5463943 ,
84.92938243, 61.83041323, 53.38539126, 54.2678542 ]))
错误是因为np.sort
不知道如何处理这个问题。
关于python - 具有多个元素的数组的真值不明确?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58950502/
我在 linux 上工作。我对windows没有太多想法。 windows中文件的权限是如何组织的?我们在unix中是否有像chmod这样的api来更改权限? 最佳答案 对于 Windows,有一个名
应用程序编程接口(interface) (API) 是一组用于访问基于 Web 的软件应用程序的编程指令和标准。 如果出现 ,有人可以向我解释一下吗?谷歌地图 或 优酷 这是API哪个是softwar
我有两个应用程序,A 和 B,它们使用 android 库 C。B 有一个服务 A 想通过 C 使用,例如 在我的库中有一个类试图将它绑定(bind)到服务,
我正在正常或安全模式下启动相机应用程序,具体取决于使用我的应用程序执行的手势,但一旦用户选择应用程序并点击始终,则没有选项可以更改默认值,即使是从 Android 的设置菜单中也是如此. camera
我有一个数据集,本质上是一个稀疏二进制矩阵,表示两个集合的元素之间的关系。例如,让第一组是人(用他们的名字表示),例如像这样的东西: people = set(['john','jane','mike
何为pythonic? pythonic如果翻译成中文的话就是很python。很+名词结构的用法在中国不少,比如:很娘,很国足,很CCTV等等。 我的理解为,很+名词表达了一种特殊和强调的意味。
某些 Prolog 目标的确定性成功问题已经一次又一次地出现在 - 至少 - 以下问题: Reification of term equality/inequality Intersection an
我指的是 DateTime.TryParse(string s, out DateTime result) 重载,它尝试从字符串中解析 DateTime - 没有特定的格式正在指定。 我可以从http
2020 年 04 月 10 日,《中共中央国务院关于构建更加完善的要素市场化配置体制机制的意见》正式公布,将数据确立为五大生产要素(土地、资本、劳动力以及技术)之
有人可以解释一下 NSNotification 的 addObserver 函数中 notificationSender 的用途吗? 这是 Apple 文档的解释: notificationSende
我是一名优秀的程序员,十分优秀!