自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(25)
  • 资源 (21)
  • 收藏
  • 关注

原创 指针和对象

截图自 c++ primer plus

2017-08-31 01:14:11 144

转载 explicit

http://www.cnblogs.com/ymy124/p/3632634.html首先, C++中的explicit关键字只能用于修饰只有一个参数的类构造函数, 它的作用是表明该构造函数是显示的, 而非隐式的, 跟它相对应的另一个关键字是implicit, 意思是隐藏的,类构造函数默认情况下即声明为implicit(隐式).那么显示声明的构造函数和隐式声明的有什么区别呢? 我们来看下面的例子:

2017-08-27 18:47:26 187

原创 Ch02

1 Data Structures Lists Queues and Stacks2 Set Representation3 Graphs2.1 Data Structures: Lists, Queues and Stackssuppose ;ELEMENT: index into the arrayNAME[ELEMENT]: item storedNEXT[ELEMENT]: inde

2017-08-25 11:42:48 191

原创 NP

deterministicPNPNP-complete problemsreducibility of algorithmNP-completeNP (for nondeterministic polynomial time) is a complexity class used to describe certain types of decision problems.determini

2017-08-22 10:55:19 262

原创 borel集

sigma代数borel 集测度σ\sigma代数σ\sigma代数是一个集合组,对于这个集合组满足三个条件: 1. 空集属于这个集合组 2. 若A属于,那么A的补集也属于 3. 对于一个集合序列,若它们都属于,那么它们的极限也属于对于一个集合X,它的最小的σ\sigma代数是空集和它本身组成的集合组,最大的集合组是它的所有子集组成的集合组。borel 集https://en.wikipe

2017-08-22 08:41:54 42709 1

原创 8086的内存分段机制 内存寻址

保护模式下寻址段机制实例分析如图,8086内部有8个16位寄存器,AX BX CX DX SI DI BP SP为了加快指令执行速度,8086内部有一个6字节的指令预取队列,当处理器执行不需要访问内存的指令时,指令预取部件访问内存预取指令。8086有4个段寄存器 CS DS ES IP,当一段代码开始执行时,CS指向代码段的起始地址,IP指向段内偏移。CS:IP共同形成逻辑地址,并由总线接口部件来

2017-08-21 21:52:09 1340

原创 深入理解linux内核-ch02

1 内存编址2 段机制-硬件21 段选择器和段寄存器22 段描述符23 Fast Access to Segment Descriptors24 Segmentation Unit3 Segmentation in Linux2.1 内存编址我们通过 memory address 来得到内存的内容,对于8086处理器,需要区分三种地址: 1. 逻辑地址:每个逻辑地址包含一个 段 和一

2017-08-21 20:14:41 307

原创 深入理解linux内核-ch02

Ch02 Memory Addressing1 Memory Addresses2 Segmentation in HardwareSegment Selectors and Segmentation Registers22 Segment Descriptors23 Fast Access to Segment DescriptorsSegmentaion Unit3 Segment

2017-08-21 19:29:25 279

原创 深入理解linux内核-ch01

45 An Overview of the Unix Filesystem52 Hard and Soft Links53 File Types54 File Descriptor and Inode55 Access Rights and File Mode56 File-Handling System Calls561 Opening a file562 Accessing an

2017-08-21 19:27:54 407

原创 泊松过程 Possion Process 伯努利过程

IntroductionThe Bernoulli Process相互独立 无记忆Interarrival Times 到达时距The kthk_th Arrival TimeSplitting and Merging of Bernoulli ProcessThe Possion Approximation to the BinomialThe Possion ProcessNum

2017-08-21 14:37:43 4899

原创 java网络编程读书笔记-Ch04 05

Internet Addresses链接上网的设备被称为 nodes. Nodes that are computers are called hosts.Domain Name System (DNS)The InetAddress Classjava.net.InetAddressThe java.net.InetAddress class is Java’s high-level repres

2017-08-16 14:31:44 323

原创 tensorflow slim layers

arg_scopeTFDecorator一个提供了 __get__, __call__tf_contextlib相当于python的上下文管理器 A tf_decorator-aware wrapper for contextlib.contextmanager. Usage is identical to contextlib.contextmanagerarg_scope(list_ops_

2017-08-16 08:21:58 1473 1

原创 apue读书笔记-Ch04(2)

# 4.9 `chmod, fchmod fchmodat` Functions#include <sys/stat.h>int chmod(const char *pathname, mode_t mode);int fchmod(int fd, mode_t mode);int fchmodat(int fd, const char *pathname, mode_t mode, int

2017-08-15 15:53:45 257

原创 ImageNet Classification with Deep Convolutional Neural Networks -- 解读

论文解读先稍微翻译下数据集ImageNet 有各种分辨率的图片,我们需要固定大小的。所以,向下取样到 256 * 256。除此之外没有别的预处理。 ImageNet consists of variable-resolution images, while our system requires a constant input dimen- sionality. Therefore, we do

2017-08-14 18:32:30 690

原创 java网络编程读书笔记-Ch03

java network programming

2017-08-14 16:01:49 425

原创 Inception v1 论文及源码

论文解读Network-in-networkR-CNNMultivation and High Level ConsiderationsArchitectural Details源码分析函数源码Going deeper with convolutions Christian Szegedy, Wei Liu, Yangqing Jia, Pierre...

2017-08-14 07:31:57 2757 3

原创 java网络编程读书笔记-Ch02

Streams同步的streams需要等待读写完毕,才能继续做别的 Streams are synchronous; that is, when a program (really a thread) asks a stream to read or write a piece of data, it waits for the data to be read or written before

2017-08-13 21:59:01 266

原创 apue读书笔记-Ch04

1 Introduction2 stat fstat fstatat lstat Functions c语言中关键字restrict的用法 3 File TypesSet-User-ID and Set-Group-IDFile access permission6 Ownership of New Files and Directories7 access an

2017-08-13 16:21:01 242

原创 arg_scope 解读

共享变量变量作用域理解tfget_variabletfvariable_scope变量作用域的初始化器tfvariable_scope中ops的名称arg_scope共享变量http://wiki.jikexueyuan.com/project/tensorflow-zh/how_tos/variable_scope.html变量作用域变量作用域机制在TensorFlow中主要由两部分组

2017-08-12 22:42:49 3555

翻译 tf.contrib.slim

tfcontribtfcontribslim介绍arg_scopedataevaluationlayerslearninglossesmetricsnetsqueuesregularizersvariablestfcontribslimpythonnetstf.contribtf.contrib包下是一些非官方的文件,代码的更改和删除不会被通知。 这个包下提供的特性在将

2017-08-12 22:30:07 2563

原创 Show and Tell Lessons learned from the 2015 MSCOCO Image Captioning Challenge论文及tensorflow源码解读(2)

Source codebuild_modelbuild_image_embeddingsSource codebuild_modelbuild_image_embeddings在建立了图片和caption的输入后,这部分将图片转换为固定大小的tensor,就像论文提及的,使用已经用很大的数据集训练好的深度网络模型,不改变它的参数,直接用于特征提取。首先将图片丢入inception v3网络中,得

2017-08-12 22:03:22 740

翻译 Threading and Queues -- Tensorflow

Threading and QueuesQueueQueue的使用CoordinatorQueueRunnerHandling ExceptionsThreading and QueuesQueueQueues 用于异步计算 Queues are a powerful mechanism for asynchronous computation using TensorFlow.

2017-08-12 20:48:08 361

原创 Weakly supervised object recognition with convolutional neural networks 论文解读

1. Model Overview1.1 什么是weakly supervised learninghttps://stackoverflow.com/questions/18944805/what-is-weakly-supervised-learning-bootstrappingIn short: In weakly supervised learning, you use a limited

2017-08-11 17:19:56 528

原创 Show and Tell Lessons learned from the 2015 MSCOCO Image Captioning Challenge论文及tensorflow源码解读

Show and Tell Lessons learned from the 2015 MSCOCO Image Captioning Challenge论文及tensorflow源码解读

2017-08-10 19:32:40 1678 1

转载 欢迎使用CSDN-markdown编辑器

欢迎使用Markdown编辑器写博客本Markdown编辑器使用StackEdit修改而来,用它写博客,将会带来全新的体验哦:Markdown和扩展Markdown简洁的语法代码块高亮图片链接和图片上传LaTex数学公式UML序列图和流程图离线写博客导入导出Markdown文件丰富的快捷键快捷键加粗 Ctrl + B 斜体 Ctrl + I 引用 Ctrl

2017-08-10 15:58:37 211

mpi programming

Practical MPI Programming MPI Programming Guide Parallel Programming in OpenMP

2019-02-19

Tom Apostol Mathematical Analysis 2ed.pdf

Tom Apostol Mathematical Analysis 2ed.pdf

2018-09-11

Python 3 Text Processing with NLTK 3 Cookbook.pdf

Python 3 Text Processing with NLTK 3 Cookbook.pdf Python 3 Text Processing with NLTK 3 Cookbook.pdf

2017-12-23

经典教材:差分方程基本教程- Elaydi.pdf

经典教材:差分方程基本教程- Elaydi.pdf 经典教材:差分方程基本教程- Elaydi.pdf 经典教材:差分方程基本教程- Elaydi.pdf

2017-10-20

编译原理(高清龙书中文版).pdf

编译原理(高清龙书中文版).pdf 编译原理(高清龙书中文版).pdf

2017-10-17

x86汇编语言-从实模式到保护模式

x86汇编语言-从实模式到保护模式 x86汇编语言-从实模式到保护模式

2017-10-16

Introduction to Differential Equations with Dynamical Systems

Introduction to Differential Equations with Dynamical Systems (Stephen L. Campbell).pdf

2017-10-16

An Introduction to Statistical Learning with .pdf

An Introduction to Statistical Learning with .pdf Statistical Learning

2017-10-16

离散数学及其应用 原书第6版(美)罗森著 第六版中文版.pdf

离散数学及其应用 原书第6版(美)罗森著 第六版中文版.pdf 离散数学及其应用 原书第6版(美)罗森著 第六版中文版.pdf

2017-10-16

C++ Primer Plus英文版(第六版).pdf

C++ Primer Plus英文版(第六版).pdf C++ Primer Plus英文版(第六版).pdf

2017-10-16

Data Structures and Algorithms in C++, 4th edition.pdf

Data Structures and Algorithms in C++, 4th edition.pdf

2017-10-02

Neural Networks and Deep Learning

2017-04-27

Nonlinear Programming_Bertsekas

2017-04-27

Advanced.Programming.in.the.UNIX.Environment.3rd.Edition

2017-04-27

R语言实战(中文完整版)

2017-04-27

Django Web开发指南

2017-04-27

Python网络编程基础

2017-04-27

A First Course in Machine Learning

2017-04-27

空空如也

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

TA关注的人

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