机器学习的定义 定义1 Arthur Samuel (1959). Machine Learning: Field of study that gives computers the ability to learn without being explicitly programmed. Arth ...
分类:
其他好文 时间:
2018-10-15 18:30:58
阅读次数:
154
Given a constant K and a singly linked list L, you are supposed to reverse the links of every Kelements on L. For example, given L being 1→2→3→4→5→6, ...
分类:
其他好文 时间:
2018-10-15 14:57:57
阅读次数:
171
本文译自《Deep learning for understanding faces: Machines may be just as good, or better, than humans》。为了方便,文中论文索引位置保持不变,方便直接去原文中找参考文献。 近些年深度卷积神经网络的发展将各种目标 ...
分类:
其他好文 时间:
2018-10-14 23:10:00
阅读次数:
421
例如,要想test.txt文件添加内容"I am a boy",test.txt在当前目录中 方法一:vi编辑法 打开终端,输入vi test.txt 回车,按a或i进入编辑模式,输入 I am a boy,然后按esc键退出编辑模式,输入:wq保存并退出。 方法二:echo命令法 打开终端,输入e ...
分类:
系统相关 时间:
2018-10-14 13:46:51
阅读次数:
210
一个程序的要求如下,输入一个学生的数学成绩,如果大于等于60,那么就输出good,如果小于60那么输出not good int a scanf_s("%d",&a) if(a>=60) { printf("good"); } if(a<60) { printf("not good"); } 逻辑上是 ...
分类:
其他好文 时间:
2018-10-13 02:50:26
阅读次数:
130
The high level of English is a standard for a top student. 1. Describe a good law in your country. What it is? How did you knew it? Who does it affect ...
分类:
其他好文 时间:
2018-10-12 23:39:08
阅读次数:
229
一:准备素材将素材放入laya/assets目录中.本人新建一个animation文件夹专门放动画素材.如下图所示:二:开始制作动画Ⅰ,GraphicAnimation动画①右击Scenes->新建->动画,打开新建对话框②设置动画类型为GraphicAnimation,名称为boy,如下图所示:③点击确认会在Scenes中生成boy.ani文件,我将其放入移入了animation文件
分类:
其他好文 时间:
2018-10-11 18:59:15
阅读次数:
1391
<题目链接> 题目大意: 给出a和b,如果一个数每一位都是a或b,那么我们称这个数为good,在good的基础上,如果这个数的每一位之和也是good,那么这个数是excellent。求长度为n的excellent数的个数mod(1e9+7)。 解题分析: 我们可以枚举a的个数m,所以b的个数为(n- ...
分类:
其他好文 时间:
2018-10-09 19:58:49
阅读次数:
135
Connected to server[2018-10-08 05:45:52,830] Artifact mo04:war: Artifact is being deployed, please wait...08-Oct-2018 17:45:53.037 严重 [RMI TCP Connect ...
分类:
编程语言 时间:
2018-10-08 23:15:18
阅读次数:
292
Description "原题链接" 给你一个长度为$n$的排列$~P$,定义一段子区间是好的,当且仅当这个子区间内的值构成了连续的一段。例如对于排列$\{1,3,2 \}$,$[1, 1], [2, 2], [3, 3], [2, 3], [1, 3]$是好的区间。 共$q$次询问,每次询问$L, ...
分类:
其他好文 时间:
2018-10-08 23:14:33
阅读次数:
414