【发布时间】:2019-08-16 02:16:42
【问题描述】:
我是 python 新手。在我的代码中,我试图从头开始实现支持向量机。该代码以前有 2 个功能和 2 个类(1 和 -1),有 6 个实例(每个类),并且运行良好。 我试图用 6 个实例(每个类)为 9 个功能和 2 个类(1 和 -1)实现相同的代码,它给了我一个值错误,我似乎无法修复它。 我正在使用 Python 3.6.3 版 感谢您的帮助。
#This is my dictionary/dataset
data_dict = {-1: np.array([[1, 7, 4, 1, 9, 1, 5, 6, 7],
[2, 8, 6, 0, 8, 6, 8, 5, 2],
[3, 8, 7, 3, 2, 5, 4, 4, 8], ]),
1: np.array([[5, 1, 8, 2, 6, 4, 0, 2, -3],
[6, -1, 5, -2, 6, -3, 0, 5, 3],
[7, 3, 0, 4, 10, -6, 9, 8, 2], ])}
#Call to the function
svm = Support_Vector_Machine()
svm.fit(data=data_dict)
#Function fit
def fit(self, data):
self.data = data
#Some more code here
#w_t and b intialized here
for i in self.data:
for xi in self.data[i]:
yi = i
if not yi * (np.dot(w_t, xi) + b) >= 1:
found_option = False
# print(xi,':',yi*(np.dot(w_t,xi)+b))
if found_option:
opt_dict[np.linalg.norm(w_t)] = [w_t, b]
错误信息:
在模块中
svm.fit(data=data_dict)
适合
if not yi * (np.dot(w_t, xi) + b) >= 1:
ValueError: shapes (2,) and (9,) not aligned: 2 (dim 0) != 9 (dim 0)
【问题讨论】:
-
w_t 的形状是什么?
-
@mujjiga 谢谢!!这就是问题所在。 n_t 是一个有 2 个元素的 ndarray。
标签: python-3.x machine-learning svm