fitcecoc函数属于statistic&machine learning toolbox,用于训练多分类ECOC(error-correcting output code)模型 参考资料: 1.matlab10行代码完成多分类功能(SVM,softmax,fitcecoc):https://bl ...
分类:
其他好文 时间:
2020-05-22 12:59:32
阅读次数:
413
有时提升一个模型的准确度很困难,尝试所有曾学习过的策略和算法,但模型的正确率并没有改善。 前面介绍的算法中,每种算法都有不同的适用范围,可以把多种机器学习算法组合在一起,这时提高算法准确度的有效方法之一。 接下来介绍如何通过scikit-learn来实现集成算法,包括: 装袋(Bagging)算法: ...
分类:
编程语言 时间:
2020-05-22 09:26:55
阅读次数:
52
#include <bits/stdc++.h> #define N 300005 #define ll long long using namespace std; int n,m,tot,opcnt,qcnt,B,now; int a[N],A[N],output[N],cnt[N],mex[N ...
分类:
系统相关 时间:
2020-05-21 13:26:37
阅读次数:
57
"nginx documentation" Compile "Building nginx from Sources" Reload Auto Index "Module ngx_http_autoindex_module" ...
分类:
其他好文 时间:
2020-05-21 13:12:17
阅读次数:
56
https://github.com/vdumoulin/conv_arithmetic [1] Vincent Dumoulin, Francesco Visin - A guide to convolution arithmetic for deep learning (BibTeX) Conv ...
分类:
编程语言 时间:
2020-05-19 20:41:12
阅读次数:
336
我们在实际工作中,常常把RANK函数用于对一列数据的基本排序,即从大到小的排序方法,那你还知道它的其他什么用法吗? 今天就给大家系统的分享下RANK函数的用法,分享的内容主要为以下这6种技巧。 1、升序排列 2、降序排列 3、多列数据排名 4、多条件排名 5、不出现相同排名(以出现顺序进行优先排列) ...
分类:
编程语言 时间:
2020-05-19 12:55:33
阅读次数:
114
网页地址:https://github.com/datawhalechina/team-learning/blob/master/03%20%E8%AE%A1%E7%AE%97%E6%9C%BA%E8%A7%86%E8%A7%89/%E8%AE%A1%E7%AE%97%E6%9C%BA%E8%A7% ...
分类:
其他好文 时间:
2020-05-19 10:45:36
阅读次数:
73
本文主要介绍深度学习项目实践过程中可能遇到的一些组件及使用技巧!一、Optimizor优化器选择 二、激活函数选择 三、防止过拟合 四、防止梯度消失/爆炸 五、权值初始化 六、数据预处理 七、学习率 learning rate 八、批次大小 batch_size 九、损失函数 Loss 十、其他 ...
分类:
其他好文 时间:
2020-05-18 18:42:12
阅读次数:
72
参考:https://stats.stackexchange.com/questions/250943/what is the difference between episode and epoch in deep q learning 训练时,一个epoch中有很多的episode。 如果数据集 ...
分类:
其他好文 时间:
2020-05-17 17:53:49
阅读次数:
171
人生第一道树套树的题,看着bin巨的代码才学会,太累了,文字明天补 #include<bits/stdc++.h> using namespace std; const int maxn=60010; int n,q,m,tot; int a[maxn]; int t[maxn]; int T[ma ...
分类:
编程语言 时间:
2020-05-17 01:13:19
阅读次数:
56