MMD :maximum mean discrepancy(最大平均差异) MMD:maximum mean discrepancy。最大平均差异。最先提出的时候用于双样本的检测(two-sample test)问题,用于判断两个分布p和q是否相同。它的基本假设是:如果对于所有以分布生成的样本空间为 ...
分类:
其他好文 时间:
2019-07-12 20:11:36
阅读次数:
679
http://stanford.edu/class/msande448/2019/Final_presentations/ http://stanford.edu/class/msande448/2018/ http://stanford.edu/class/msande448/2017/ http ...
分类:
编程语言 时间:
2019-07-10 13:31:38
阅读次数:
122
There is a ball in a maze with empty spaces and walls. The ball can go through empty spaces by rolling up, down, left or right, but it won't stop roll ...
分类:
其他好文 时间:
2019-07-07 14:22:14
阅读次数:
84
REST Representational State Transfer, 是一种软件架构风格,提供一系列限制指导,用于更好的创建web service。 符合REST 架构风格的web service 称为Restful web service。 其核心是以资源为关注点,而不是方法或消息, RES ...
分类:
其他好文 时间:
2019-07-05 12:42:27
阅读次数:
110
题意:给n个数$a_i$,求选一个数x和一个集合S不重合,gcd(S)!=1,gcd(S,x)==1的方案数. 题解:$ans=\sum_{i=2}^nf_ig_i$,$f_i$是数组中和i的gcd不为1的个数,$g_i$是选取集合gcd为i的方案数. $f_n=\sum_{i=1}^N[gcd(n ...
分类:
其他好文 时间:
2019-07-03 21:35:42
阅读次数:
122
Android程序开发中,使用规范的命名有益于程序的开发和后期阅读。本文主要对Android程序包名的定义做详细介绍,并附带一些简单的命名规则。 一.标识符命名方法1 .小驼峰命名法,除首单词外,其余所有单词的第一个字母大写。如:allPrice,getAllNames2.大驼峰命名法,所有单词的第 ...
分类:
移动开发 时间:
2019-06-30 17:22:30
阅读次数:
1364
https://api.jquery.com/on/ .on( events [, selector ] [, data ], handler )Returns: jQuery Description: Attach an event handler function for one or more ...
分类:
Web程序 时间:
2019-06-28 15:21:11
阅读次数:
199
3.The significance of Books 书本的意义 (1)A bookless life is an imcomplete life.Books influence the depth and breadth of life.They meet the natural desire ...
分类:
其他好文 时间:
2019-06-25 22:12:05
阅读次数:
158
# pcjimport time# print(time.localtime())# print(time.time())# #print(help(time)) #获取time的帮助# #time.sleep(1) #睡几秒# print(time.gmtime(10000000000)) # c... ...
分类:
编程语言 时间:
2019-06-16 13:30:21
阅读次数:
105