自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(13)
  • 资源 (5)
  • 收藏
  • 关注

原创 VScode远程调试remote development

VScode insider版本的remote development

2019-05-06 22:57:53 14072

原创 pytorch中RNN,LSTM,GRU使用详解

RNNCellnn.RNNCell(input_size, hidden_size, bias=True, nonlinearity=‘tanh’)h′=tanh⁡(Wihx+bih+Whhh+bhh)h^{\prime}=\tanh \left(W_{i h} x+b_{i h}+W_{h h} h+b_{h h}\right)h′=tanh(Wih​x+bih​+Whh​h+bhh​)...

2019-05-04 16:16:53 27895 7

原创 向量和矩阵范数

向量范数X=(x1,x2,…,xn)TX=\left(x_{1}, x_{2}, \ldots, x_{n}\right)^{T}X=(x1​,x2​,…,xn​)T一阶范数∥X∥1=∑i=1n∣xi∣=∣x1∣+∣x2∣+…+∣xn∣\|X\|_{1}=\sum_{i=1}^{n}\left|x_{i}\right|=\left|x_{1}\right|+\left|x_{2...

2019-05-02 19:11:28 210

原创 Text-Guided Attention Model for Image Captioning

In our approach, we leverage a guidance captions as associated text language to steer visual attention. Our image captioning network is trained to minimize the following loss:1.给定一张图片,从训练集中选择一张相...

2019-02-28 21:56:58 451 1

原创 爬取CV三大顶会CVPR,ECCV,ICCV论文并做成CSV方便查询

代码:https://github.com/kangkang59812/crawl_paper.gitcsv下载地址:https://download.csdn.net/download/lkangkang/10927923

2019-01-19 18:43:14 1938

原创 《机器学习》周志华这本书中,查准率和查全率图的问题

有知道的大佬能回答下吗?这是我在知乎中的提问。 

2018-10-20 19:53:59 252

原创 Tensorflow1.8用keras实现MNIST数据集手写字体识别例程(二)

这次使用CNN。只需将我上一篇Tensorflow1.8用keras实现MNIST数据集手写字体识别例程中的MLP()替换为CNN()即可。class CNN(tf.keras.Model): def __init__(self): super().__init__() self.conv1 = tf.keras.layers.Conv2D( ...

2018-10-01 12:17:13 860

原创 Tensorflow1.8用keras实现MNIST数据集手写字体识别例程

import tensorflow as tftf.enable_eager_execution()eager是新版本加入的动态图,可以直接计算出结果而不用使用Session。同时也支持微分操作。class DataLoader(): def __init__(self): mnist = tf.contrib.learn.datasets.load_data...

2018-10-01 11:22:34 1473 1

原创 CodeWars:[5 kyu] The Hashtag Generator

The marketing team is spending way too much time typing in hashtags.Let's help them with out own Hashtag Generator!Here's the deal: //将字符串去掉空格,以‘#’打头,并且大写每个单词的首字母。 It must start with a hashta...

2018-09-17 22:00:20 383

原创 CodeWars: [5 kyu] Perimeter of squares in a rectangle

The drawing shows 6 squares the sides of which have a length of 1, 1, 2, 3, 5, 8. It's easy to see that the sum of the perimeters of these squares is : 4 * (1 + 1 + 2 + 3 + 5 + 8) = 4 * 20 = 80//给出了...

2018-09-16 11:34:39 761

原创 CodeWars:What's a Perfect Power anyway?

A perfect power is a classification of positive integers:In mathematics, a perfect power is a positive integer that can be expressed as an integer power of another positive integer. More formally, ...

2018-09-15 11:53:39 832

原创 CodeWars:Decode the Morse code

Part of Series 1/3This kata is part of a series on the Morse code. After you solve this kata, you may move to the next one.In this kata you have to write a simple Morse code decoder. While the Mo...

2018-09-14 10:14:53 1122 1

原创 CodeWars:Double Cola

Sheldon, Leonard, Penny, Rajesh and Howard are in the queue for a "Double Cola" drink vending machine; there are no other people in the queue. The first one in the queue (Sheldon) buys a can, drinks i...

2018-09-13 14:33:01 433

深度学习入门:基于Python的理论与实现

本书是深度学习真正意义上的入门书,深入浅出地剖析了深度学习的原理和相关技术。书中使用Python3,尽量不依赖外部库或工具,从基本的数学知识出发,带领读者从零创建一个经典的深度学习网络,使读者在此过程中逐步理解深度学习。书中不仅介绍了深度学习和神经网络的概念、特征等基础知识,对误差反向传播法、卷积神经网络等也有深入讲解,此外还介绍了深度学习相关的实用技巧,自动驾驶、图像生成、强化学习等方面的应用,以及为什么加深层可以提高识别精度等“为什么”的问题。原书是日本作者。

2018-08-25

Python语言及其应用

《Introducing Python》的中文版,图灵上2016年的书。原作者Bill Lubanovic,译者梁杰等译,非扫描有书签。一本pdf而已其他人都要30积分??我下来低价供大家使用学习

2018-08-25

Python3实现k近邻算法

Python3实现的k近邻算法。数据集是约会网站的数据和手写数字的数据。根据《机器学习实战》中的例子改动而来。

2018-06-05

计算机网络

谢希仁的计算机网络第五版,高清带标签版。很好的介绍计算机和网络关系的一本教程。

2018-03-27

百度百科爬虫

Python3.5实现的爬虫,截至2018年1月06日可用,为了测试方便我在循环里循环到50次强制退出了,大家可以自行修改。

2018-01-06

空空如也

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

TA关注的人

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