首页 > 2016年09月10日 > 全部分享
从零到一:caffe-windows(CPU)配置与利用mnist数据集训练第一个caffemodel
一、前言 本文会详细地阐述caffe-windows的配置教程。由于博主自己也只是个在校学生,目前也写不了太深入的东西,所以准备从最基础的开始一步步来。个人的计划是分成配置和运行官方教程,利用自己的数据集进行训练和利用caffe来实现别人论文中的模型(目前在尝试的是轻量级的SqueezeNet)三步... ...
分类:Windows开发   时间:2016-09-10 06:44:10    收藏:0  评论:0  赞:0  阅读:934
LeetCode-Integer to English Words
Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 231 - 1. For example, 123 -> "One Hundre ...
分类:其他   时间:2016-09-10 06:43:47    收藏:0  评论:0  赞:0  阅读:218
Git for Windows 工具下载及配置
前言,关于git工具的帖子:http://cn.v2ex.com/t/225027 最终选择了git for windows这个工具,路径为:https://git-for-windows.github.io/ 安装没有什么要说的,关于git配置可参考http://www.cnblogs.com/v ...
分类:Windows开发   时间:2016-09-10 06:43:08    收藏:0  评论:0  赞:0  阅读:340
100. Same Tree
思路:递归。 null也是tree。 null tree (definition) Definition: (1) A tree which is empty. (2) A tree whose leaf nodes all have a null value. https://xlinux.nis ...
分类:其他   时间:2016-09-10 06:42:57    收藏:0  评论:0  赞:0  阅读:273
cocos2dx-js 的配置和安装
1.cocos2d安装所需要的系统配置配置(由于我用的是windows, 因此我只说一下windows环境下): Windows 7+ Python 2.7.5 NDK r10c+ Android SDK apache Ant 1)首先安装Python 2.7.5, 首先下载安装包,下载地址是:点击 ...
分类:Web开发   时间:2016-09-10 06:42:27    收藏:0  评论:0  赞:0  阅读:286
110. Balanced Binary Tree
Given a binary tree, determine if it is height-balanced. For this problem, a height-balanced binary tree is defined as a binary tree in which the dept ...
分类:其他   时间:2016-09-10 06:42:17    收藏:0  评论:0  赞:0  阅读:221
LintCode刷题笔记-- PaintHouse 1&2
标签: 动态规划 题目描述: There are a row of n houses, each house can be painted with one of the k colors. The cost of painting each house with a certain color i ...
分类:其他   时间:2016-09-10 06:41:48    收藏:0  评论:0  赞:0  阅读:180
LeetCode-Two Sum III - Data structure design
Design and implement a TwoSum class. It should support the following operations: add and find. add - Add the number to an internal data structure. fin ...
分类:其他   时间:2016-09-10 06:41:18    收藏:0  评论:0  赞:0  阅读:281
20款免费备份文件软件
经常对电脑中资料进行备份的重要性已不用多说,但每次都辛苦地逐个目录拷贝、或花半天时间整理目录和文件、更不能想象重装系统后繁复的系统设置调整。如果你曾经因为这些而对系统备份工作有所迟疑,那么现在让你彻底告别这些顾虑! 1. Areca Backup 7.1.10 Areca Backup 是一个开源的 ...
分类:其他   时间:2016-09-10 06:41:01    收藏:0  评论:0  赞:0  阅读:240
104. Maximum Depth of Binary Tree
思路:纯递归。 ...
分类:其他   时间:2016-09-10 06:40:13    收藏:0  评论:0  赞:0  阅读:217
Django RedirectView
RedirectView作用是重定向一个指定,给定的Url.这个给定的Url可能包含有字典风格的字符串,因为关键字(词)会被改变,所以从这个Url中捕获的参数可能也会被修改,例如,Url中的“%”应该写成“%%”这样python才会将其修改成“%”。 如果指定的Url是None,那么会触发:Http ...
分类:其他   时间:2016-09-10 06:39:30    收藏:0  评论:0  赞:0  阅读:433
Android开发之FileProvider
最近做项目时,都需要用到FileProvider。于是就研究了下,现总结如下: 官方路径:http://developer.android.com/intl/zh-cn/training/secure-file-sharing/setup-sharing.html 比如短信要分享一张图片到蓝牙,需要 ...
分类:移动平台   时间:2016-09-10 06:39:23    收藏:0  评论:0  赞:0  阅读:287
Codeforces_AIM Tech Round 3 (Div. 1)_B
http://codeforces.com/problemset/problem/711/B 比较简单,过程有点繁琐,先找一行包含那个0的行,得到和,以此填出0位置的值,然后判断这个矩阵是否符合条件。 要注意的是,n=1的情况,数据超了int,结果不为负。 ...
分类:其他   时间:2016-09-10 06:38:49    收藏:0  评论:0  赞:0  阅读:241
linux处理U盘中的资料-挂载-tar.gz软件安装-linux环境下软件的安装方式
1. U盘插入linux一般会有以下反映 (1)/dev 的目录下,多出一个sdb的磁盘。 因为:目前系统中有两个硬盘, sda是原来的系统磁盘。sdb是插入的U盘。 其中:sdb1表示sdbU盘的一个分区。 (2)在/dev/disk/ 硬盘目录下,可以通过by-label查看所有的当前系统中的所 ...
分类:系统服务   时间:2016-09-10 06:38:42    收藏:0  评论:0  赞:0  阅读:233
柯里化
柯里化 将多参数函数分为较小的一个参数函数 在一些基本类型的题外话之后,我们再次回到函数上,特别是我们前面提到的难题,如果数学函数只能有一个参数,那么F#的函数怎么能有多个参数? 答案很简单:多参数的函数被重写成一系列的单个参数的新函数。这是编译器为你自动完成的。一个在函数式编程中有重要影响的数学家 ...
分类:其他   时间:2016-09-10 06:38:27    收藏:0  评论:0  赞:0  阅读:221
linux环境下(非UI操作)所有软件的安装与卸载总结
UI界面的软件管理 linux下的软件一般都是经过压缩的,主要的格式有这几种:rpm、tar、tar.gz、tgz等。所以首先拿到软件后第一件事就是解压缩。 在xwindow下以rpm格式的软件安装比较容易,只要在把鼠标移到文件上单击右键,在弹出的菜单里会有专门的三项(只有在右键单击rpm文件才会出 ...
分类:系统服务   时间:2016-09-10 06:38:20    收藏:0  评论:0  赞:0  阅读:304
Codeforces_AIM Tech Round 3 (Div. 1)_A
http://codeforces.com/problemset/problem/708/A 贪心,先把前面连续的一串'a'排除,再向后知道找到第一个'a',注意特殊情况。 ...
分类:其他   时间:2016-09-10 06:37:58    收藏:0  评论:0  赞:0  阅读:213
Android - 文件读写操作 总结
http://www.cnblogs.com/bastard/archive/2013/03/04/2943302.html http://blog.csdn.net/singleton1900/article/details/8615108 http://blog.csdn.net/yygydjk ...
分类:移动平台   时间:2016-09-10 06:37:48    收藏:0  评论:0  赞:0  阅读:208
ubuntu14.04中安装opencv2.4.13
1. 先下载OpenCV的源码 2. 解压到任意目录 unzip opencv-2.4.13.zip 3. 进入源码目录,创建release目录 cd opencv-2.4.13 mkdir release 4. 可以看到在OpenCV目录下,有个CMakeLists.txt文件,需要事先安装一些软 ...
分类:系统服务   时间:2016-09-10 06:37:30    收藏:0  评论:0  赞:0  阅读:882
191. Number of 1 Bits
Write a function that takes an unsigned integer and returns the number of ’1' bits it has (also known as theHamming weight). For example, the 32-bit i ...
分类:其他   时间:2016-09-10 06:37:21    收藏:0  评论:0  赞:0  阅读:250
1279条   上一页 1 ... 57 58 59 60 61 ... 64 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!