chenrudan.github.io chenrudan.github.io

chenrudan.github.io

听见下雨的声音

听见下雨的声音

http://chenrudan.github.io/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR CHENRUDAN.GITHUB.IO

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

March

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Thursday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.1 out of 5 with 15 reviews
5 star
9
4 star
1
3 star
4
2 star
0
1 star
1

Hey there! Start your review of chenrudan.github.io

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

0.1 seconds

CONTACTS AT CHENRUDAN.GITHUB.IO

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
听见下雨的声音 | chenrudan.github.io Reviews
<META>
DESCRIPTION
听见下雨的声音
<META>
KEYWORDS
1 听见下雨的声音
2 陈汝丹
3 个人博客
4 陈汝丹
5
6 coupons
7 reviews
8 scam
9 fraud
10 hoax
CONTENT
Page content here
KEYWORDS ON
PAGE
个人博客,deeplearning 深度学习之五常见tricks,project experience,我在组建网络或者调节代码过程中会用到的一些小技巧,主要针对卷积网络和图像处理,阅读全文,cuda cuda stream和event相关内容,programming languages,download&install,caffe 的项目架构,阅读caffe的源代码的一些总结,gpu编程模型公开课,open course,学习这个公开课的一些笔记,powered by jekyll
SERVER
GitHub.com
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

听见下雨的声音 | chenrudan.github.io Reviews

https://chenrudan.github.io

听见下雨的声音

INTERNAL PAGES

chenrudan.github.io chenrudan.github.io
1

[DeepLearning]深度学习之五常见tricks | 听见下雨的声音

http://chenrudan.github.io/blog/2015/08/04/dl5tricks.html

一般数据集可能不会给出验证集,所以自己会从给的训练集中按照一定比例 9 1 分离出验证集。 又或者可以给给权重矢量的模加上上边界 3 or 4 ,更新时对delta w进行归一化。 但是leaky版本 0换成0.01 的效果并不是很稳定。 这种情况如果数据集跟imagenet的比较相近,可以直接用finetuning的方法,假如不相近,首先考虑重新构造数据集的每一类个数,再次可以减少数据量比较大的类 减采样 ,并且复制数据量比较小的类 增采样。 参考 [1] http:/ cs231n.stanford.edu/. 2] http:/ lamda.nju.edu.cn/weixs/project/CNNTricks/CNNTricks.html. 3] http:/ www.cs.toronto.edu/ fritz/absps/imagenet.pdf. Ubuntu 14.04下配置caffe- -. 主题 - NexT.Muse.

2

听见下雨的声音

http://chenrudan.github.io/chenrudan.github.io

David Silver强化学习公开课之八 Integrating Learning and Planning(对Environment建立模型). 这一课主要讲了如何拟合environment模型,通过有监督的方式来更新model,以及如何基于学习的model来找policy/value function,主要谈到了Monte-Carlo Tree Search方法,并且将拟合model和求解value function结合起来实现Dyna算法。 David Silver强化学习公开课之七 Policy Gradient. David Silver强化学习公开课之五 Model-Free Control(解决未知Environment下的Control问题). David Silver强化学习公开课之四 Model-Free Learning(解决未知Environment下的Prediction问题). 主题 - NexT.Muse.

3

[caffe]的项目架构和源码解析 | 听见下雨的声音

http://chenrudan.github.io/blog/2015/05/07/cafferead.html

Gdb - args ./build/tools/caffe train solver=examples/cifar10/cifar10 full solver.prototxt. 例如下面的例子中,c 的代码中声明这样的内容,DEFINE string是一个string类型,括号内的solver就是一个flag,这个flag从命令行中读取的参数就会解析成string,存在FLAGS solver中,使用时当成正常的string使用即可。 DEFINE string(solver, , The solver definition protocol buffer text file. );. Foo -f1 1 -f2 2. Google Protocol Buffer(简称Protobuf)是Google公司内部的混合语言数据标准,目前已经正在使用的有超过48,162种报文格式定义和超过12,183个.proto文件。 定义好的proto进行编译后生成.h和.cc对应c 的头文件和源文件。 主题 - NexT.Muse.

4

听见下雨的声音

http://chenrudan.github.io/page/2

人们可以通过07年推出的CUDA(Compute Unified Device Architecture)用代码来控制gpu进行并行计算。 最近两天研究了一下EM算法,主要是基于 统计学习方法 和论文 What is the expectation maximization algorithm? Ubuntu 14.04下配置caffe- -. 主题 - NexT.Muse.

5

【GPU编程系列之三】cuda stream和event相关内容 | 听见下雨的声音

http://chenrudan.github.io/blog/2015/07/22/cudastream.html

主要参考了 The CUDA Handbook 这本书。 所有分配内存 Modules,类似于动态链接库,以.cubin和.ptx结尾 CUDA streams,管理执行单元的并发性 CUDA events texture和surface引用 kernel里面使用到的本地内存 设备内存 用于调试、分析和同步的内部资源 用于分页复制的固定缓冲区. Cuda runtime 软件层的库 不提供API直接接入CUDA context,而是通过. Deferred initialization 来创建context,也就是lazy initialization。 因而cuda runtime提供的函数形式类似cudaDeviceSynchronize()而不是与driver API 对应的cuCtxSynchronize()。 管理GPU、CPU的并发 当流处理器在执行kernel时可以调用内存复制引擎同时进行内存复制 不同 核函数的并发 多GPU的并发. 启动核函数 在同一个设备上的内存复制 小于64KB内存从主机复制到设备 后缀带有Async的复制函数 调用内存设置函数 设置共享内存、L1缓存大小等.

UPGRADE TO PREMIUM TO VIEW 0 MORE

TOTAL PAGES IN THIS WEBSITE

5

LINKS TO THIS WEBSITE

tutuge.me tutuge.me

原创 | iOS,Android程序猿,喜欢Mac、Linux、各种开源技术,各种语言

http://tutuge.me/tags/原创

Swift开源Mac App - BingWallPaper. 结合访问Out Parameters出现EXC BAD ACCESS的例子,反编译汇编解读 autoreleasing.

tutuge.me tutuge.me

PHP | iOS,Android程序猿,喜欢Mac、Linux、各种开源技术,各种语言

http://tutuge.me/tags/PHP

tutuge.me tutuge.me

UITextView编辑时插入自定义表情-续-自定义表情图片的大小 | iOS,Android程序猿,喜欢Mac、Linux、各种开源技术,各种语言

http://tutuge.me/2015/04/21/resizable-nstextattachment

本文代码工程地址 https:/ github.com/zekunyan/UITextViewDIYEmojiExample. Layout manager. (required). Receiver's graphical representation in. Strong, nonatomic) NSString *emojiTag;. Assign, nonatomic) CGSize emojiSize;. EmojiSize.width, emojiSize.height);.

tutuge.me tutuge.me

解决iOS项目的版本兼容问题-结合宏、Category和Runtime | iOS,Android程序猿,喜欢Mac、Linux、各种开源技术,各种语言

http://tutuge.me/2015/07/25/compatibility-with-macro-category-and-runtime

Deployment Target 和 Base SDK. Weakly Linked - 运行时检查类、方法是否可用. 最近,在做项目时,因为某种原因,突然要 适配 iOS6 也是醉了。 本文总结了一些常规的,和 非常规 的iOS项目向老版本兼容的办法,结合了 宏定义. Deployment Target 和 Base SDK. 指的是用来编译APP的SDK Software Development Kit 的版本,一般保持当前XCode支持的最新的就好,如iOS8.4。 既然Base SDK的版本大于等于Deployment Target的版本,那么就要小心了,因为 只要用到的类、方法,在当前的Base SDK版本里面存在,就可以. IPHONE OS VERSION MIN REQUIRED = 70000. IPHONE OS VERSION MAX ALLOWED. IPHONE OS VERSION MIN REQUIRED. UIDevice currentDevice] .systemVersion. If IPHONE OS VERSION MAX ALLOWED 80000.

tutuge.me tutuge.me

归档 | iOS,Android程序猿,喜欢Mac、Linux、各种开源技术,各种语言

http://tutuge.me/archives

Swift开源Mac App - BingWallPaper. 结合访问Out Parameters出现EXC BAD ACCESS的例子,反编译汇编解读 autoreleasing.

tutuge.me tutuge.me

有趣的Autolayout示例-Masonry实现 | iOS,Android程序猿,喜欢Mac、Linux、各种开源技术,各种语言

http://tutuge.me/2015/05/23/autolayout-example-with-masonry

Content Compression Resistance = 不许挤我. Content Hugging = 抱紧. Case 3: 子View的宽度始终是父级View的一半 或者任意百分比. 2015-11-27: 感谢 谢小雷 指出打字错误. 2015-9-1: 感谢 王振宇C艹 指出打字错误,已经修改了哈. 刚开始学习Autolayout的时候,什么 Leading Edges 、 Horizontal Centers ,好多啊,感觉一下子适应不来,有时候面对一个界面布局上的需求,可能都无从下手。 遇到这种跟内容压缩、优先级有关的布局,就不得不提Autolayout中的两个重要的属性 Content Compression Resistance. Content Compression Resistance = 不许挤我. 这个属性的优先级 Priority 越高,越不 容易 被压缩。 Content Hugging = 抱紧. 整体空间足够时,两个label的宽度由内容决定,也就是说,label的 Content Hugging 优先级很高,而且没有固定的Width属性。 Container...

tutuge.me tutuge.me

审核 | iOS,Android程序猿,喜欢Mac、Linux、各种开源技术,各种语言

http://tutuge.me/tags/审核

tutuge.me tutuge.me

Enum-枚举的正确使用-Effective-Objective-C-读书笔记-Item-5 | iOS,Android程序猿,喜欢Mac、Linux、各种开源技术,各种语言

http://tutuge.me/2015/03/21/effective-objective-c-5-enum

Item 5 - Use Enumerations for States, Options, and Status Codes. 状态与选项的区别 states and options. Enum,也就是枚举,从C语言开始就有了,C 、Java、Objective-C、Swift这些语言,当然都有对应的枚举类型,功能可能有多有少,但是最核心的还是一个 规范的定义代码中的状态、选项等 常量。 Item 5 - Use Enumerations for States, Options, and Status Codes. 状态与选项的区别 states and options. STATE = STATE UNKNOW ;. 无法限制状态的所有情况,如,认为的将STATE赋值成3,程序可能就会出错,找不到匹配的状态,因为编译器不会对 STATE = 3;. 125; TTGState;. TTGState state = TTGStateOK;. 125; TTGDirection;. Direction and TTGDirectionTop) {. 123;/*.*/}.

tutuge.me tutuge.me

有趣的Autolayout示例2-Masonry实现 | iOS,Android程序猿,喜欢Mac、Linux、各种开源技术,各种语言

http://tutuge.me/2015/08/08/autolayout-example-with-masonry2

用法3: 使用新版的mas topLayoutGuide和mas bottomLayoutGuide. UIEdgeInsets padding = UIEdgeInsetsMake( 10. View1 mas makeConstraints: (MASConstraintMaker *make) {. Maketop.equalTo(superview.mas top). with. Makeleft.equalTo(superview.mas left). with. Makebottom.equalTo(superview.mas bottom). with. Makeright.equalTo(superview.mas right). with. View1top = superview.top padding.top ;. View1顶部的y坐标 = superview顶部的y坐标 padding.top ;. View1底部的y坐标 = superview底部的y坐标 (- 10. View2 mas makeConstraints: (MASConstraintMaker * make.

tutuge.me tutuge.me

UITextView编辑时插入自定义表情-简单的图文混编 | iOS,Android程序猿,喜欢Mac、Linux、各种开源技术,各种语言

http://tutuge.me/2015/03/07/UITextView编辑时插入自定义表情-简单的图文混编

本文代码工程地址 https:/ github.com/zekunyan/UITextViewDIYEmojiExample. NSTextAttachment *emojiTextAttachment = [NSTextAttachment new. EmojiTextAttachment.image = emojiImage;. TextView.selectedRange.location];. 查阅文档 NSAttributedString Class Reference. Specified attribute run in. Strong, nonatomic) NSString *emojiTag;. EmojiTextAttachment *emojiTextAttachment = [EmojiTextAttachment new] ;. EmojiTextAttachment.emojiTag = emojiTag ;. EmojiTextAttachment.image = emojiImage ;. PlainString = [ NSMutableString.

UPGRADE TO PREMIUM TO VIEW 13 MORE

TOTAL LINKS TO THIS WEBSITE

23

OTHER SITES

chenrr.com chenrr.com

晨风网络-网站优化—网站建设—网站设计—网页设计—高端网站建设—集团网站建设—企业网站建设—手机网站建设—行业网站建设—新乡网站建设—尖端SEM

chenrs.wordpress.com chenrs.wordpress.com

Enjoy creating from scratch | perfect means dead

Enjoy creating from scratch. Skip to primary content. Skip to secondary content. November 17, 2013. November 16, 2013. 所谓的PCA(Principal Component Analysis) 其实就是对数据进行降维。 降维好处主要表现在 1. 减小数据规模,使数据更易于处理 2. 减少特征冗余,如果两个特征之间高度线性相关,则留下其中一个即可,用两个就变得多余 3. 减少数据噪音。 形式化的表示是 假设原始输入中每个data point都是一个n维向量 {x1, x2, , xn},PCA实现如下操作。 Lecture 3. Framework for Algorithms Analysis-II. October 13, 2012. CLAIM: This lecture note is based on design and analysis of algorithms. So it seems that the conclusion we draw on a mathematic...

chenru.blogspot.com chenru.blogspot.com

Fiskar fisk for a living

Tisdag 6 december 2011. Emil fick efter stickdragning äran att drilla en lax på runt 3,5 kg. Måndag 5 december 2011. I detta inlägg tänkte jag att jag ska visa hur jag gjorde min spöklämmor till isfisket. De är varken avancerade eller speciellt dyra. De är enkla att göra och fyller sin funktion. Klämmorna i färdig form. Utrustning du behöver för att göra klämmorna är (pris på Biltema):. Kniv (alternativt en fil). Jag limmade fast mina med skåran pekandes uppåt, så att inte vippan ska kunna glida i sidled.

chenruan.com chenruan.com

【www.chenruan.com】域名正在出售-This Domain www.chenruan.com For Sale -网怪@域名增值服务商

This domain name www.chenruan.com is for sale! This domain name is for sale. 网怪de域名,2006年创于北京,自有18000多个出售域名,与阿里巴巴,中电信,中兴,华润,等均有合作 介绍». 1、买家拍下淘宝网(Taobao.com)中专属 www.chenruan.com 域名的商品,支付到淘宝网. 赠 专属 * *@www.chenruan.com 电子邮局. 卖家通过域名注册商的站内Push功能 爱名网22.cn、易名ename.net ,将域名和索取的交易金额发送到买家账户,买家成功接收到域名的同时支付域名款项。 各大中介帮助买家购买本域名,中介 淘宝网taobao.com、爱名网22.cn、易介ejee.com、金名网4.cn、玉米网yumi.com、A5站长网admin5.com、淘名网hupo.com、名商dnbiz.cn、易名ename.com、万网net.cn等。 域名转移码 提供www.chenruan.com域名的转移密码,买家可转移至全球任意注册商 ( 介绍. 185 1117 1113 (7 24小时).

chenrudan.github.io chenrudan.github.io

听见下雨的声音

chenrui.cc chenrui.cc

www.chenrui.cc

chenrui.com chenrui.com

www.chenrui.com This Domain is for Sale by Auction

chenrui.net chenrui.net

连云港网站建设_连云港东海网络公司_东海网站建设_东海微信网站建设_东海小程序开发_辰瑞网络

超大容量,海量数据备份,智能过滤垃圾邮件,专业支持打造 7 x 24 金牌服务。

chenrui.org chenrui.org

响石潭微博

2015-05-17 15:26:25 from 响石潭. 2015-05-17 15:19:24 from 响石潭. 2015-05-17 15:15:29 from 响石潭. 2015-05-17 12:46:56 from 响石潭. 2015-05-17 12:46:14 from 响石潭. 2015-05-16 16:52:00 from 响石潭. 2015-05-10 08:49:15 from 响石潭. 2015-05-10 07:33:41 from 响石潭. 2015-05-06 06:06:15 from 响石潭. 2015-05-06 06:02:40 from 响石潭. 2015-04-30 07:37:40 from 响石潭. 2015-04-29 17:44:21 from 响石潭. 2015-04-29 17:39:29 from 响石潭. 2015-04-27 15:30:59 from 响石潭. 今天值班,觉得越来越缺钱了 是需求高了 还是 应该静一静,过好平淡的日子。 2015-04-26 07:50:36 from 响石潭. 数据统计 24 小时内发布 0.

chenrui.org.cn chenrui.org.cn

东海网络公司_东海网站建设_东海网络推广_东海网络营销-东海辰瑞网络技术有限公司