命令式和符号式混合编程 def add(a, b): return a + b def fancy_func(a, b, c, d …
发布于 2022-04-20
摘要
发布于 2022-04-18
摘要
—选自公众号 量子学派 无逻辑,则无真相 俄乌战争到底谁是谁非,舆论场出现大撕裂。 这是继中医、转基因后又一”割席断交“的话 …
发布于 2022-04-18
摘要
yolo的原理部分https://zhuanlan.zhihu.com/p/25236464 我们今天把目光着重在他的使用上 源码 …
发布于 2022-04-18
摘要
优化与深度学习 优化在深度学习中的挑战 %matplotlib inline import sys sys.path.append …
发布于 2022-04-18
摘要
长短期记忆(LSTM) 读取数据集 import numpy as np import torch from torch impo …
发布于 2022-04-18
摘要
门控循环单元(GRU) 读取数据集 import numpy as np import torch from torch impo …
发布于 2022-04-18
摘要
循环神经网络 import torch print(torch.__version__) 1.11.0+cu113 cuda X, …
发布于 2022-04-17
摘要
import time import torch from torch import nn, optim import torch …
发布于 2022-04-17
摘要
残差网络(ResNet) import time import torch from torch import nn, optim …