- 博客(13)
- 收藏
- 关注
原创 caffe中openblas函数
caffe中openblas函数说明汇总 为了方便查阅将官网中的说明直接拷贝过来 cblas_?axpby Scales two vectors, adds them to one another and stores result in the vector. Syntax void cblas_saxpby (const MKL_INT n, const float a, c
2018-01-10 21:22:57
695
转载 cnn理解文章(转)
A Beginner’s Guide To Understanding Convolutional Neural NetworksThe Problem Space Image classification is the task of taking an input image and outputting a class (a cat, dog, etc) or a probability
2017-09-04 13:49:53
863
原创 caffe 安装
参考 参考二 一些错误和配置 .bashrc export PYTHONPATH=/home/xxx/caffe_env/caffe/python:$PYTHONPATH 错误:No module named google.protobuf.internal export PYTHONPATH=/home/xxx/caffe_env/protobuf-2.6.1/py
2017-07-24 13:58:48
260
原创 YouCompleteme 安装
ycm安装 参考 步骤一: vimrc中添加youcompleteme插件 .vimrc中添加 Bundle 'Valloric/YouCompleteMe' 在命令行模式下 :BundleInstall 步骤二: 下载最新版本的libclang 下载地址:http://llvm.org/releases/download.html Clang for x86_64
2017-07-17 17:09:12
454
原创 Nexus 搞机之路 —— aosp源码的获取与编译
Nexus5x 源码的下载与编译 由于国内的墙的关系,即使使用了梯子,在repo 源码的时候也会出现失败的现象,辛亏国内有中科大和清华大学aosp的源,加快了repo 的速度 国内镜像的说明 AOSP镜像的一些说明文档,可以根据说明进行下载 https://mirrors.tuna.tsinghua.edu.cn/help/AOSP/ https://lug.ustc.edu.c
2017-07-13 14:32:38
746
原创 caffe docker
caffe docker 版安装 根据caffe官网的安装说明 1.docker 安装: https://docs.docker.com/engine/installation/linux/docker-ce/ubuntu/ 2.nvidia-docker 安装:https://github.com/NVIDIA/nvidia-docker 3. 按照caffe官网进行操作之后,dock
2017-07-10 15:47:11
353
原创 x86 汇编 之 指令基础 (AT&T格式 / Linux)
x86 汇编 之 指令基础 (AT&T格式 / Linux) 常见指令 mov sub add push pop call ret 指令与其等效的指令 enter指令 pushl %ebp movl %esp %ebp leave指令 movl %ebp, %esp popl %ebp call指令 pushl %eip movl f,
2017-07-08 16:11:33
1033
转载 (转载)有空整理
How to Discover Hidden Fastboot Commands In my quest to discover as much about Android customization as I possibly could, I’ve made many obscure, yet interesting discoveries. I’ve shown you how to ac
2017-06-26 22:28:08
1315
原创 python 最大值
max = a if a > b else b max = (a > b and [a] or [b])[0] max = a > b and a or b
2017-06-20 14:48:21
1079
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人