title: [概率论]6-3:中心极限定理(The Central Limit Theorem) categories: - Mathematic - Probability keywords: - The Central Limit Theorem - The Normal distribution - The Delta Method toc: true date: 2018-04-09 09:21:44 Abstract: 本文介绍中心极限定理 Keywords: The Central
因为每一条数据都服从IID原则: 根据中心极限定理,当数据增加的时候,样本均值的分布慢慢变成正态分布 不管分布式什么分布,累加起来都是高斯分布 As sum increases, sum of non-Gaussian, finite variance variables is also Gaussian 为什么要累加?因为Y出现的概率等于n个小y出现的概率相乘 p(Y)=累加p(yi) In probability theory, the central limit theorem (CLT)
w http://www.numpy.org/ NumPy is the fundamental package for scientific computing with Python. It contains among other things: a powerful N-dimensional array object sophisticated (broadcasting) functions tools for integrating C/C++ and Fortran code u
week9: 查找论文的情况 1.*(reference) title:Improving Performance and Capacity of Flash Storage Devices by Exploiting Heterogeneity of MLC Flash Memory author:Sungjin Lee ; Jihong Kim from:IEEE TRANSACTIONS ON COMPUTERS content: (1)A MLC NAND flash memory, e
概率图的学习真的要接近尾声了啊,了解的越多越发感受到它的强大.这周的作业本质上是data mining.从数据中学习PGM的结构和参数,完全使用数据驱动 —— No structure, No parameters. Data tell us everything 1.识别外星人 如此强大的工具要用来做一件极其逗逼的事情:在给定肢体位姿条件下,从图形中识别外星人...显而易见,地球人只有两手两脚,外星人却有4手2脚!给定的肢体位姿以三坐标的形式出现(y,x, angle),其中x,y 代表肢体的
本文主要介绍Dropout及延伸下来的一些方法,以便更深入的理解. 想要提高CNN的表达或分类能力,最直接的方法就是采用更深的网络和更多的神经元,即deeper and wider.但是,复杂的网络也意味着更加容易过拟合.于是就有了Dropout,大部分实验表明其具有一定的防止过拟合的能力. 1- Dropout 最早的Dropout可以看Hinton的这篇文章 <Improving neural networks by preventing co-adaptation of feature D