发布于 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 …
发布于 2022-04-17
摘要
批量归一化 import time import torch from torch import nn, optim import …
发布于 2022-04-17
摘要
import time import torch from torch import nn, optim import torch …
发布于 2022-04-17
摘要
网络中的网络(NiN) import time import torch from torch import nn, optim …