05 2022 档案
摘要:近邻分类器 二分类 from sklearn import svm import numpy as np import random import sklearn as svm w=[] train_x=[] train_y=[] rest_x=[] rest_y=[] average5=[] av
阅读全文
摘要:二分类 from sklearn import svm import numpy as np w=[] train_x=[] train_y=[] test_x=[] test_y=[] def Init(): global train_x,train_y,test_x,test_y with op
阅读全文