Python实现BP神经网络

参考文章:http://www.javashuo.com/article/p-mmorlaqw-p.html 代码:html 首先实现几个工具函数:python def rand(a, b): return (b - a) * random.random() + a def make_matrix(m, n, fill=0.0): # 创造一个指定大小的矩阵 mat = []
相关文章
相关标签/搜索