#include<iostream> #include<vector> #include<algorithm> #include <queue> #include <functional> #define endl '\n' #define _for(i,a,b) for(int i=a;i<b;i ...
分类:
其他好文 时间:
2020-03-10 13:54:47
阅读次数:
44
'''本节说明搭建pytorch神经网络的常用两种方式 相比快速搭建法 第一种可以个性化设置网络结构''' import torch import torch.nn.functional as F #方式1 用 class 继承了一个 torch 中的神经网络结构, 然后对其进行了修改 class ...
分类:
其他好文 时间:
2020-03-01 10:30:35
阅读次数:
45
'''本节说明搭建pytorch的常用两种方式 相比快速搭建法 第一种可以个性化设置网络结构''' import torch import torch.nn.functional as F #方式1 用 class 继承了一个 torch 中的神经网络结构, 然后对其进行了修改 class Net( ...
分类:
其他好文 时间:
2020-03-01 10:29:49
阅读次数:
91
decoder.py """ 实现解码器 """ import heapq import torch.nn as nn import config import torch import torch.nn.functional as F import numpy as np import rando ...
分类:
其他好文 时间:
2020-02-29 22:47:07
阅读次数:
103
导入相关包 torch.nn.functional中包含relu(),maxpool2d()等 CNN 常用操作。 显示 pytorch 环境版本及是否使用 GPU 下载FashionMNIST数据集并转换格式为Tensor(Extract & Transform) 继承nn.Moudle建立模型, ...
分类:
其他好文 时间:
2020-02-26 20:36:34
阅读次数:
149
基本内容 1、 实现一个网络模型,需要继承torch.nn.Module类,初始化模型参数,并实现forward()函数 2、torch.nn.functional 提供一些如损失函数等不需要学习参数的功能函数 3、torch.nn.Sequential() 模块简化简单模型的定义 4、损失函数to ...
分类:
其他好文 时间:
2020-02-14 14:26:16
阅读次数:
95
代码: #集中不同的优化方式 import torch import torch.utils.data as Data import torch.nn.functional as F from torch.autograd import Variable import matplotlib.pypl ...
分类:
其他好文 时间:
2020-02-12 18:17:57
阅读次数:
73
学习Lambda表达式之前需要一些铺垫,下面直接开始把 1. 接口的默认方法 接口之前定义为只有常量和抽象方法,JDK1.8之后增加了默认方法 2. 函数式接口 函数式接口(Functional Interface)就是一个有且仅有一个抽象方法,但是可以有多个非抽象方法的接口,下面举例多线程的Run ...
分类:
其他好文 时间:
2020-02-04 23:32:15
阅读次数:
82
头文件:#include<queue>、#include<functional> 定义:(默认:从大到小)priority_queue<int> que; (自定义:从大到小)priority_queue<int,vector<int>,less<int> > que; (最后两个'>'间要有个空格 ...
分类:
其他好文 时间:
2020-02-03 18:47:34
阅读次数:
61
1.定义:priority_queue<Type, Container, Functional>Type 就是数据类型Container 就是容器类型(Container必须是用数组实现的容器,比如vector,deque等等,但不能用 list。STL里面默认用的是vector),Function ...
分类:
其他好文 时间:
2020-02-02 20:06:54
阅读次数:
102