摘要: import numpy as npfrom sklearn.naive_bayes import GaussianNB #导入GaussianNBX = np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]])Y = np.a 阅读全文
posted @ 2019-09-21 17:04 TIMLONG 阅读(1309) 评论(0) 推荐(0)