摘要: 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 喵小喵~ 阅读(385) 评论(0) 推荐(0) 编辑