局部加权回归( locally weighted regression ) 特征选择问题:underfitting,overfitting parametric learing algorithm:有固定数目的参数以用来数据拟合的算法; Non parametric learing algorith ...
分类:
其他好文 时间:
2020-01-29 18:23:37
阅读次数:
97
| 分类 leetcode | Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most signifi... ...
分类:
其他好文 时间:
2020-01-29 12:44:58
阅读次数:
82
Convert a non-negative integer to its english words representation. Given input is guaranteed to be less than 231 - 1. Example 1: Input: 123 Output: " ...
分类:
其他好文 时间:
2020-01-29 10:50:06
阅读次数:
54
//non-explicit-one argument ctor(具有一个实参的构造函数) #include <iostream> using namespace std; class Fraction { public: Fraction(int num,int den=1) :m_numerat ...
分类:
编程语言 时间:
2020-01-28 23:32:03
阅读次数:
75
http://acm.hdu.edu.cn/showproblem.php?pid=1066 转自:https://blog.csdn.net/fengyu0556/article/details/5615129 hdu1066改进的思路和对于大数的处理:(转) 为了把0去掉,我们把所有的因数2和5 ...
分类:
其他好文 时间:
2020-01-28 19:24:40
阅读次数:
79
>>> plt.show() __main__:1: UserWarning: Matplotlib is currently using agg, which is a non-GUI backend, so cannot show the figure. 原因: 发现发生在 coco.py 文件... ...
分类:
其他好文 时间:
2020-01-28 13:49:29
阅读次数:
266
标签(空格分隔): ACM D. MEX maximizing Description: Recall that MEX of an array is a minimum non negative integer that does not belong to the array. Examples ...
分类:
其他好文 时间:
2020-01-27 23:55:09
阅读次数:
116
分治,考虑分治到[l,r]的区间(设$mid=(l+r)/2$),将询问分为两类:1.在左/右区间,直接递归下去;2.跨越中间,那么处理出两个数组:L[i][j]表示左区间在开头第i个位置,以数字j为结尾的上升子序列个数(不跨越mid),右区间同理(L和R的计算很简单,只需要再处理出一个L[i][j ...
分类:
其他好文 时间:
2020-01-27 14:03:38
阅读次数:
107
1005 Spell It Right (20分) 题目: Given a non negative integer N , your task is to compute the sum of all the digits of N , and output every digit of the ...
分类:
其他好文 时间:
2020-01-26 23:49:39
阅读次数:
85
什么是NoSQL? NoSQL最常见的解释是“non-relational”, “Not Only SQL”也被很多人接受。NoSQL仅仅是一个概念,泛指非关系型的数据库,区别于关系数据库,它们不保证关系数据的ACID特性。NoSQL是一项全新的数据库革命性运动,其拥护者们提倡运用非关系型的数据存储 ...
分类:
其他好文 时间:
2020-01-26 22:30:47
阅读次数:
70