码迷,mamicode.com
首页 >  
搜索关键字:Beginner    ( 341个结果
pytorch multi-gpu train
记录一下pytorch如何进行单机多卡训练: 官网例程:https://pytorch.org/tutorials/beginner/blitz/data_parallel_tutorial.html 下面以一个例子讲解一下,例如现在总共有8张卡,在第5、6、7三张卡上进行训练; step 1:可视 ...
分类:其他好文   时间:2019-03-26 13:54:21    阅读次数:227
pytorch例子学习——TRANSFER LEARNING TUTORIAL
参考:https://pytorch.org/tutorials/beginner/transfer_learning_tutorial.html 以下是两种主要的迁移学习场景 微调convnet : 与随机初始化不同,我们使用一个预训练的网络初始化网络,就像在imagenet 1000 datas ...
分类:其他好文   时间:2019-03-17 00:56:31    阅读次数:234
Atcoder Beginner Contest 121D(异或公式)
#include<bits/stdc++.h>using namespace std;int main(){ long long a,b; cin>>a>>b; a--; long long tmp=a; if(tmp&1) tmp=0; long long tot=a; if(tot%4==1|| ...
分类:其他好文   时间:2019-03-11 01:09:07    阅读次数:151
AtCoder Beginner Contest 120 解题报告
为啥最近都没有arc啊... A Favorite Sound B K th Common Divisor 显然,就是求gcd的第k小的因子。 cpp include include include include include include include include include in ...
分类:其他好文   时间:2019-03-03 22:29:22    阅读次数:145
CS 659 Image Processing and Analysis
Dr. Frank ShihCS 659 Image Processing and AnalysisResearch Paper 1 GuidelineTotal: 20%In order to obtain full credits, you need to read and follow thi ...
分类:其他好文   时间:2019-03-02 19:59:29    阅读次数:158
Atcoder Beginner Contest 118
"A: B +/ A" 签到题. "B: Foods Loved by Everyone" 签到题. "C: Monsters Battle Royale" 怪物的血量一直两两相减,类似于辗转相减法. 可以证明,最后存活怪物血量最小值即为所有怪物初始血量的 $gcd$ . "D: Match Mat ...
分类:其他好文   时间:2019-02-17 11:04:35    阅读次数:174
AtCoder Beginner Contest 117 解题报告
果然abc都是手速场。 倒序开的qwq。 D题因为忘记1e12二进制几位上界爆了一发。 A Entrance Examination 就是除一下就行了。。。 看样例猜题意系列。 B Polygon 他都把定理给你了。。。 你直接按他的意思模拟就好,数组都不用开 cpp include int mai ...
分类:其他好文   时间:2019-02-03 22:10:44    阅读次数:246
[pytorch学习]2. 官网60分钟教程摘要
https://pytorch.org/tutorials/beginner/deep_learning_60min_blitz.html 1. Pytorch的基本单元,tensor,本质上和numpy的操作类似;不同的主要在与可以自动计算微分和梯度(Autograd); 2. 每个tensor的 ...
分类:其他好文   时间:2019-01-31 01:24:29    阅读次数:169
Google Capture The Flag 2018 (Quals) - Beginner's Quest - Reverse - Firmware
参考链接:https://ctftime.org/task/6263 题目 After unpacking the firmware archive, you now have a binary in which to go hunting. Its now time to walk around ...
分类:其他好文   时间:2019-01-19 20:09:51    阅读次数:207
Django--在Pythonanywhere部署Django。
1. 免费上线网址:www.pythonanywhere.com-->Pricing & signup(购买和注册)-->Free(免费) 2. Create Beginner account-->注册-->邮箱验证 3.进入界面,分四部分 :控制台Console、文件Files、日志Noteboo ...
分类:编程语言   时间:2019-01-11 23:16:01    阅读次数:399
341条   上一页 1 ... 11 12 13 14 15 ... 35 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!