码迷,mamicode.com
首页 >  
搜索关键字:speed    ( 1368个结果
MySQL: Speed of INSERT Statements
Speed of INSERT StatementsTo optimize insert speed, combine many small operations into a single large operation. Ideally, you make a single connection...
分类:数据库   时间:2015-06-20 17:01:20    阅读次数:152
Caffe学习笔记
Caffe学习笔记CaffeCaffe is a deep learning framework made with expression, speed, and modularity in mind. It is developed by the Berkeley Vision and Learn...
分类:其他好文   时间:2015-06-19 20:08:37    阅读次数:339
mini2440 MJPG_STREAMER 产生问题
usb摄像头芯片是中芯微的zc0301pl, http://www.vimicro.com.cn/product/pdf/ZC301PL-1107-V10-EN.pdf [root@FriendlyARM bin-song]# usb 1-1.2: new full speed USB device...
分类:其他好文   时间:2015-06-18 21:44:07    阅读次数:122
【作业一】林轩田机器学习基石
作业方面,暂时只关注需要编程的题目了,用python完成代码。Q15~Q17应用的是传统PLA算法,给定的数据集也是保证线性可分的。代码需要完成的就是实现一个简单的PLA,并且“W = W + speed*yX”中的speed是可以配置的(即学习速率)代码1#encoding=utf8import ...
分类:其他好文   时间:2015-06-15 18:05:24    阅读次数:387
C++ 正则获取url中参数
在访问网页过程中,为了识别所做操作或者访问对象的编号,大多是用Get方式进行提交网页。所以就有我们经常看到的url,比如http://longzhu.com/channels/speed?from=figameindex。 那么在url中的参数如何获取呢,在ASP.NET中是通过 Request[....
分类:编程语言   时间:2015-06-14 21:23:47    阅读次数:228
HDU 1160 FatMouse's Speed--dP--(元素1递增元素2递降的最长子序列)
题意:找到体重递增速度递降的最长序列 分析:和最长递增子序列一样,不过这里先做处理:先把体重按递增排序,然后找最长递降子序列即可 代码: #include #include #include using namespace std; struct node{ int w,s; int t; }a[2000]; int n,i; struct h{ int x; int pre; }d...
分类:其他好文   时间:2015-06-14 18:42:23    阅读次数:129
SIFT,SURF,ORB,FAST 特征提取算法比较
SIFT,SURF,ORB,FAST 特征提取算法比较主要的特征检测方法有以下几种,在一般的图像处理库中(如opencv, VLFeat, Boofcv等)都会实现。 FAST ,Machine Learning for High-speed Corner Detection, 2006 SIFT,Distinctive Image Features from Scale-Invariant Key...
分类:编程语言   时间:2015-06-11 21:16:00    阅读次数:472
POJ 2070
#include#includeusing namespace std;int main(){ //freopen("acm.acm","r",stdin); double speed; double weight; double strength; int time;...
分类:其他好文   时间:2015-06-10 18:37:19    阅读次数:156
Cocos2d-x 3.2 Action动作
本文参考于Cocos2d-x v3.2学习笔记中的(八)动作(Action)Action有三个子类:1、FiniteTimeAction类:所有在有限时间能够完成的动作(action)的基类。2、Follow类:一种“跟随”某一个节点的动作。3、Speed类:改变一个action的运行速度,使他持续...
分类:其他好文   时间:2015-06-10 14:02:07    阅读次数:123
Space Shooter 太空射击
1、控制玩家移动 public float speed = 10f; public float xMin = -6.5f; public float xMax = 6.5f; public float zMin = -4.5f; public float zMax = ...
分类:其他好文   时间:2015-06-10 01:03:09    阅读次数:197
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!