码迷,mamicode.com
首页 >  
搜索关键字:labels_    ( 281个结果
caffe_实战之两个简单的例子(物体分类和人脸检测)
一、物体分类: 这里使用的是caffe官网中自带的例子,我这里主要是对代码的解释~ 首先导入一些必要的库: out: out: probabilities and labels: Out[17]: [(0.3124361, 'n02123045 tabby, tabby cat'), (0.2379 ...
分类:其他好文   时间:2016-12-22 13:42:00    阅读次数:3326
如何利用Matlab进行ROC分析
ROC曲线基本知识: 稍后更新 ROC曲线在统计工具包当中是由perfcurve函数来决定的 典型的使用方法是: [X,Y,T,AUC] = perfcurve(labels,scores,posclass) 输出部分X和Y表示的是ROC曲线的坐标,AUC表示曲线下面积,T表示thresholds,... ...
分类:其他好文   时间:2016-12-05 19:26:14    阅读次数:1620
[D3] Create Labels from Non-numeric Data with Ordinal Scales in D3 v4
When your data contains discrete, non-numeric property values that you need to format or convert before displaying, d3.scaleOrdinal() is the API you n ...
分类:其他好文   时间:2016-12-03 00:50:14    阅读次数:138
wxpython Menus and toolbars
Menus and toolbars A common part in a GUI application is a menubar. A menubar consists of objects called menus. Top-level menus have their labels on t ...
分类:编程语言   时间:2016-11-26 13:41:44    阅读次数:646
R因子
factor(x = character(), levels, labels = levels, exclude = NA, ordered = is.ordered(x), nmax = NA) levels因子水平,如果不指定,就是x中所有不重复的值 labels水平标识名称 exclude排除 ...
分类:其他好文   时间:2016-11-22 01:53:38    阅读次数:183
随机梯度下降算法求解SVM
测试代码(matlab)如下: clear; load E:\dataset\USPS\USPS.mat; % data format: % Xtr n1*dim % Xte n2*dim % Ytr n1*1 % Yte n2*1 % warning: labels must range from ...
分类:编程语言   时间:2016-11-18 15:59:11    阅读次数:614
POJ3048 Max Factor
Description To improve the organization of his farm, Farmer John labels each of his N (1 <= N <= 5,000) cows with a distinct serial number in the rang ...
分类:其他好文   时间:2016-11-15 23:49:25    阅读次数:507
【学习笔记】K近邻归类算法
#-*-coding:utf-8-*- __author__=‘Ghostviper‘ """ K近邻归类算法 """ fromnumpyimport* importoperator defcreateDataset(): group=array([ [1.0,1.1], [1.0,1.0], [0,0], [0,0.1] ]) labels=[‘A‘,‘A‘,‘B‘,‘B‘] returngroup,labels defclassify0(inX,dataSet,labels,k): #shap..
分类:编程语言   时间:2016-10-24 17:54:43    阅读次数:160
图标制作
.product-labels{ position: absolute; top: 0; left: 0; z-index: 1; padding: 0 3px; color: #fff; font-size: 1.0rem; line-height: 18px; background: #3a49 ...
分类:其他好文   时间:2016-10-13 19:11:34    阅读次数:156
使用VS2010调用matlab的mat格式文件
做实验需要将matlab实现的meanshift的结果中的region的Iabels矩阵,需要把labels.mat读入VS2010中,实现功能,在此把实现过程记录下来。 C++读取mat文件的步骤如下。 1. vs2010的配置 新建一个工程,在属性管理器中选择 工程->属性->VC++目录。 设 ...
分类:其他好文   时间:2016-10-03 12:43:43    阅读次数:122
281条   上一页 1 ... 18 19 20 21 22 ... 29 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!