摘要: chrome://tracing/ 阅读全文
posted @ 2019-09-17 09:29 qccz123456 阅读(179) 评论(0) 推荐(0) 编辑
摘要: http://www.sohu.com/a/134347664_642762 Lenet,1986年 https://github.com/BVLC/caffe/blob/master/examples/mnist/lenet_train_test.prototxt 介绍: 结构:由两个卷积层,两个 阅读全文
posted @ 2019-09-15 22:40 qccz123456 阅读(240) 评论(0) 推荐(0) 编辑
摘要: 安装 https://docs.openvinotoolkit.org/latest/_docs_install_guides_installing_openvino_linux.html 使用 文档:https://software.intel.com/en us/openvino toolkit 阅读全文
posted @ 2019-09-11 09:44 qccz123456 阅读(3316) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/chenxuegui1234/article/details/91657427 阅读全文
posted @ 2019-09-09 14:53 qccz123456 阅读(92) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2019-09-07 18:51 qccz123456 阅读(28) 评论(0) 推荐(0) 编辑
摘要: ```shell $ vim ~/.bashrc function repeat() { number=$1 shift echo $@ for n in $(seq $number); do $@ done } $ source ~/.bashrc $ repeat 5 ``` 阅读全文
posted @ 2019-09-04 10:36 qccz123456 阅读(2004) 评论(0) 推荐(0) 编辑
摘要: intel vtune 介绍 https://software.intel.com/en us/vtune intel vtune 安装包下载地址 https://software.intel.com/en us/vtune/choose download intel® VTune™ Amplifi 阅读全文
posted @ 2019-08-12 10:58 qccz123456 阅读(7752) 评论(0) 推荐(0) 编辑
摘要: 本文主要介绍通过C语言来获得浮点数在内存中的实际存储方式。 IEEE754 单精度浮点型格式 float 型有32位,其中最高一位是符号位S,S=0 表示正数,S=1 表示负数。 最高位后面的8位是阶码E,剩下的23位为尾数部分M。 阶码E=指数真值e+127,这样使得阶码不为负数,方便了指数大小比 阅读全文
posted @ 2019-08-06 21:30 qccz123456 阅读(871) 评论(0) 推荐(0) 编辑
摘要: Ref: https://jupyter.org/install Installing Jupyter Notebook with pip 使用 https://blog.csdn.net/guleileo/article/details/80490921 PS: 看样子 JupyterLab 也不 阅读全文
posted @ 2019-08-05 10:58 qccz123456 阅读(297) 评论(0) 推荐(0) 编辑
摘要: Ref: https://github.com/lichangqing2611/Cpp Design Patterns 什么是设计模式 “每一个模式描述了一个在我们周围不断重复发生的问题,以及该问题的解决方案的核心。这样,你就能一次又一次地使用该方案而不必做重复劳动”。——Christopher A 阅读全文
posted @ 2019-07-11 17:46 qccz123456 阅读(663) 评论(0) 推荐(0) 编辑