摘要: """ 自动编码的核心就是各种全连接的组合,它是一种无监督的形式,因为他的标签是自己。 """ import torch import torch.nn as nn from torch.autograd import Variable import torch.utils.data as Data import torchvision import matplotlib.pyplot as p... 阅读全文
posted @ 2019-02-01 21:22 车路历程 阅读(645) 评论(0) 推荐(0) 编辑
摘要: """ 用sin曲线预测cos曲线 重要:网络中的初始状态赋值为零,在下一次的时候一定要将上一次生成的隐层状态包装为variable """ import torch from torch import nn from torch.autograd import Variable import numpy as np import matplotlib.pyplot as plt # 超参数 ... 阅读全文
posted @ 2019-02-01 14:36 车路历程 阅读(355) 评论(0) 推荐(0) 编辑