若H的断点为k,即k个数据点不能被H给shatter,那么k+1个数据点也不能被H给shatter,即k+1也是H的断点。 如果给定的样本数N是大于等于k的,易得mH(N)<2N,且随着N的增大,小得越来越多。 当断点为k时,记最大可能的成长函数mH(N)为bound函数,记为B(N,k)。\ 注意 ...
分类:
其他好文 时间:
2017-04-07 12:26:14
阅读次数:
165
Apache的版本是2.4.9。 <Directory "D:/wamp/www/"> # # Possible values for the Options directive are "None", "All", # or any combination of: # Indexes Includ ...
分类:
其他好文 时间:
2017-04-04 13:37:12
阅读次数:
135
题目链接:点击传送 TBATTLE - Thor vs Frost Giants #number-theory #sliding-window-1 #number-theory #sliding-window-1 Thor is caught up in a fierce battle with L ...
分类:
其他好文 时间:
2017-04-02 21:00:08
阅读次数:
297
Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be ...
分类:
编程语言 时间:
2017-03-30 16:57:22
阅读次数:
125
费马小定理(Fermat Theory)是数论中的一个重要定理,其内容为:假如a是整数,p是质数,且gcd(a,p)=1,那么: 可由欧拉定理推出, 在费马小定理中的φ(n)=p-1(因为p是质数)。 ...
分类:
其他好文 时间:
2017-03-25 19:05:46
阅读次数:
126
Description Fat brother recently studied number theory, him came across a very big problem — minimum does not appear positive integer. Fat brother get ...
分类:
其他好文 时间:
2017-03-22 16:39:00
阅读次数:
134
Given a set of candidate numbers (C) (without duplicates) and a target number (T), find all unique combinations in C where the candidate numbers sums ...
分类:
其他好文 时间:
2017-03-17 12:04:52
阅读次数:
125
熵的概念在统计学习与机器学习中真是很重要,熵的介绍在这里:信息熵 Information Theory 。今天的主题是最大熵模型(Maximum Entropy Model,以下简称MaxEnt),MaxEnt 是概率模型学习中一个准则,其思想为:在学习概率模型时,所有可能的模型中熵最大的模型是最好 ...
分类:
其他好文 时间:
2017-03-13 14:43:55
阅读次数:
304
题目链接:https://leetcode.com/problems/combination-sum-ii/?tab=Description 给定数组,数组中的元素均为正数,target也是正数。(数组中的元素可能有重复) 求出所有的满足求和等于terget的组合。 数组中的元素只能使用一次。(数组 ...
分类:
编程语言 时间:
2017-03-12 15:08:57
阅读次数:
449
题目链接: https://leetcode.com/problems/combination-sum/?tab=Description Problem: 给定数组并且给定一个target,求出所有满足求和等于target的数字组合 遍历所有的数组中元素,然后对target进行更新,将该元素添加到t ...
分类:
其他好文 时间:
2017-03-12 15:07:46
阅读次数:
95