from caffe.proto import caffe_pb2 s = caffe_pb2.SolverParameter() path='/home/xxx/data/' solver_file=path+'solver.prototxt' #solver文件保存位置 s.train_net ... ...
分类:
其他好文 时间:
2018-10-20 00:53:25
阅读次数:
200
如图所示,m是Parent构造函数的实例,每个实例都有一个__proto__属性指向构造函数的原型即Parent.prototype Parent.prototype中的constructor会指向构造函数Parent protptype:构造函数的属性,指向构造函数的原型对象 __proto__: ...
分类:
其他好文 时间:
2018-10-18 10:54:17
阅读次数:
148
function f(arr){ 1.通过_proto_ 进行判断 (arr._proto_ 指向Array.prototype); 2.通过constructor进行判断 (arr.constructor 指向 Array); 3.通过instanceof进行判断 (arr instanceof ...
分类:
Web程序 时间:
2018-10-13 02:43:19
阅读次数:
176
原文: https://www.douban.com/note/523340109/ Google protobuf: 优点 二进制消息,性能好/效率高(空间和时间效率都很不错) proto文件生成目标代码,简单易用 序列化反序列化直接对应程序中的数据类,不需要解析后在进行映射(XML,JSON都是 ...
分类:
Web程序 时间:
2018-10-13 02:35:23
阅读次数:
352
JavaScript只有Lexical Scope 模式 Lexical Scope就是在写代码的时候,定义函数的时候创建的作用域! 而动态作用域是在runtime时,函数被调用的地方的作用域! 实际上 dynamic Scope是 this关键字的近亲。这会在this & Object Proto ...
分类:
Web程序 时间:
2018-10-04 18:56:00
阅读次数:
184
= form_error_messages!(@proto) def form_error_messages!(resource) return '' if resource.errors.empty? messages = (resource.errors.messages.map do |key... ...
分类:
其他好文 时间:
2018-10-03 20:19:59
阅读次数:
126
--proto是每个对象都有的一个属性。而prototype是函数才会有的属性!!! 使用Object.getPrototypeOf()代替__proto__!!! 一、prototype 几乎所有的函数(除了一些内置函数)都有一个名为prototype(原型)的属性,这个属性是一个指针,指向一个对 ...
分类:
其他好文 时间:
2018-09-25 19:33:18
阅读次数:
152
Google Protocol Buffer 的使用和原理 1. 简介 Google Protocol Buffer( 简称 Protobuf) 是 Google 公司内部的混合语言数据标准,目前已经正在使用的有超过 48,162 种报文格式定义和超过 12,183 个 .proto 文件。他们用于 ...
分类:
其他好文 时间:
2018-09-25 17:24:56
阅读次数:
181
>netstat -aon | findstr “80″ Proto Local Address Foreign Address State PID TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 1688 可以看出80端口被进程号为1688的程序占用. >tasklist | ...
写在前面 上一篇文章对Caffe2中的core模块进行了简单拆解 "Caffe2源码解析之core" ,本篇给出其它模块的拆解,目的是大致了解每个模块的内容和目标,进一步理解Caffe2的整体框架。内容不多,略做整理如下。 目录 core proto caffe2.proto hsm.proto m ...
分类:
其他好文 时间:
2018-09-23 00:19:59
阅读次数:
204