紫薇大帝
- 粉丝: 19
- 资源: 9
内容简介:Utils.py:'''Created on 2020 年 6 月 13 日@author: 紫薇星君'''import numpy numpy.seterr(all='ignore') def sigmoid(x): return 1. / (1 + numpy.exp(-x)) def dsigmoid(x): return x * (1. - x) def tanh(x): return numpy.tanh(x) def dtanh(x): return 1. - x * x def softmax(x): e = nu...
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈


