自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

翻译 Pytorch官方教程学习笔记(8)

空间转换网络指南Author: Ghassen HAMROUNI <https://github.com/GHamrouni>_In this tutorial, you will learn how to augment your network using a visual attention mechanism called spatial transformer netw...

2018-11-28 22:59:51 1686

翻译 Pytorch官方教程学习笔记(7)

Finetuning Torchvision ModelsAuthor: Nathan Inkawhich <https://github.com/inkawhich>__In this tutorial we will take a deeper look at how to finetune andfeature extract the torchvision models ...

2018-11-27 22:37:27 6429 5

翻译 Pytorch官方教程学习笔记(6)

1.PyTorch: Tensors 与 autogradA fully-connected ReLU network with one hidden layer and no biases, trained topredict y from x by minimizing squared Euclidean distance.This implementation computes the...

2018-11-05 21:33:32 1414

翻译 Pytorch官方教程学习笔记(5)

数据加载与处理Author: Sasank Chilamkurthy <https://chsasank.github.io>_A lot of effort in solving any machine learning problem goes in topreparing the data. PyTorch provides many tools to make data ...

2018-11-03 21:14:38 383

翻译 Pytorch官方教程学习笔记(4)

数据并行处理Authors: Sung Kim <https://github.com/hunkim>_ and Jenny Kang <https://github.com/jennykang>_在本文中,我们将学习如何使用DataParallel来进行多GPUs的调用。在Pytorch中使用多GPU非常简单。可以使用以下代码将模型放到一个GPU中:device ...

2018-11-03 13:24:38 282

翻译 Pytorch官方教程学习笔记(3)

Neural NetworksNeural networks can be constructed using the torch.nn package.Now that you had a glimpse of autograd, nn depends onautograd to define models and differentiate them.An nn.Module cont...

2018-11-02 11:38:02 519 1

翻译 Pytorch官方教程学习笔记(2)

Autograd: Automatic Differentiation(自动求微分)Central to all neural networks in PyTorch is the autograd package.Let’s first briefly visit this, and we will then go to training ourfirst neural network....

2018-11-01 16:34:26 405

翻译 Pytorch官方教程学习笔记(1)

Pytorch官方教程学习笔记(1)注:本教程在pytorch官方教程的基础上修改得到,原教程请点击pytorch_tutorial%matplotlib inlineWhat is PyTorch?It’s a Python-based scientific computing package targeted at two sets ofaudiences:A replac...

2018-11-01 11:58:25 653

原创 C++ primer 第二章

第二章 变量和基本类型1 复合类型一条声明语句由一个基本数据类型(base type)和紧随其后的一个声明符(declarator)列表组成。基本数据类型:int、double等;声明符:变量名、引用&、指针*(引用和指针又称为类型修饰符,为声明符的一部分)等。2 引用引用并非对象,只是为已经存在的对象所起的另外一个名字。因为引用本身不是对象,所以不能定义引用的引用。引...

2018-10-25 23:52:29 177

原创 数字图像处理-直方图及直方图均衡化

直方图何为直方图?一幅数字图像在[0,G]范围内总共有L个灰度级,例如uint8类图像的G的值为255,分别对该数字图像中各个灰度级所占的像素的个数进行统计,便可得出该图像的灰度级统计,将该统计数据绘制为图像,即为直方图。进一步将直方图定义为离散函数:h(r)=n其中,r表示灰度级,n为灰度级所占像素个数。...

2018-07-07 16:57:14 1405

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除