
深度学习
每天净瞎搞
好好学习,关注计算机,数学,AI,另有博客:shiqi-lu.tech
展开
-
pytorch学习笔记
深度之眼的pytorch课程中学习并整理的学习笔记原创 2020-10-24 21:59:19 · 787 阅读 · 0 评论 -
pytorch第一周学习内容
pytorch第一周学习内容:张量操作与线性回归,计算图与动态图机制,autograd与逻辑回归原创 2020-09-20 10:40:49 · 200 阅读 · 0 评论 -
深度学习与神经网络-邱锡鹏 第4章 前馈神经网络
深度学习与神经网络-邱锡鹏 第4章 前馈神经网络原创 2020-09-08 21:23:27 · 562 阅读 · 0 评论 -
深度学习入门:基于Python的理论与实现 第2章 感知机
import numpy as np实现AND函数(与门):# 最简单版本def AND(x1, x2): w1, w2, theta = 0.5, 0.5, 0.7 tmp = x1*w1 + x2*w2 if tmp <= theta: return 0 elif tmp > theta: return 1...原创 2019-04-07 21:05:49 · 301 阅读 · 0 评论 -
深度学习入门:基于Python的理论与实现 第3章 神经网络
import numpy as npimport matplotlib.pylab as plt%matplotlib inline阶跃函数的实现# 只能接受实数def step_function(x): if x > 0: return 1 else: return 0# 接受Numpy数组def step_function...原创 2019-04-11 15:46:15 · 743 阅读 · 2 评论 -
深度学习入门:基于Python的理论与实现 第4章 神经网络的学习
import numpy as npimport matplotlib.pylab as plt# 均方误差的实现def mean_squared_error(y, t): return 0.5 * np.num((y - t) ** 2)# 交叉熵误差def cross_entropy_error(y, t): delta = 1e-7 return -np...原创 2019-04-18 11:01:44 · 1180 阅读 · 2 评论