01 2020 档案

摘要:import numpy as np import matplotlib.pyplot as plt from sklearn import datasets from sklearn import tree # 生成所有测试样本点 def make_meshgrid(x, y, h=.02): x_min, x_max = x.min() - 1, x.max() + 1 y_min, y_ma 阅读全文
posted @ 2020-01-08 15:08 喵小喵~ 阅读(404) 评论(0) 推荐(0)
摘要:import numpy as np import matplotlib.pyplot as plt from sklearn import datasets from sklearn.naive_bayes import GaussianNB import matplotlib #生成所有测试样本点 def make_meshgrid(x,y,h=0.02): x_min,x_max... 阅读全文
posted @ 2020-01-07 14:08 喵小喵~ 阅读(450) 评论(0) 推荐(0)