├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── LICENSE ├── README.md └── src ├── bennett_inequality.md ├── bernstein_inequality.md ├── berry_esseen_univariate.md ├── brunn_minkowski_inequality.md ├── chebyshev_inequality.md ├── chernoff_bound.md ├── dudley_entropy_bound.md ├── dvoretzky_kiefer_wolfowitz_inequality.md ├── efron_stein.md ├── fano_inequality.md ├── gaussian_concentration_inequality.md ├── generic_chaining.md ├── hoeffding_inequality.md ├── hypercontractive_inequality.md ├── le_cam_inequality.md ├── le_cam_method.md ├── markov_inequality.md ├── maximal_inequality.md ├── pinsker_inequality.md ├── poisson_moment_generating_function.md ├── prekopa_leindler_inequality.md ├── slepian_inequality.md ├── subadditivity_of_entropy.md └── sudakov_minoration.md /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/README.md -------------------------------------------------------------------------------- /src/bennett_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/bennett_inequality.md -------------------------------------------------------------------------------- /src/bernstein_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/bernstein_inequality.md -------------------------------------------------------------------------------- /src/berry_esseen_univariate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/berry_esseen_univariate.md -------------------------------------------------------------------------------- /src/brunn_minkowski_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/brunn_minkowski_inequality.md -------------------------------------------------------------------------------- /src/chebyshev_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/chebyshev_inequality.md -------------------------------------------------------------------------------- /src/chernoff_bound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/chernoff_bound.md -------------------------------------------------------------------------------- /src/dudley_entropy_bound.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/dudley_entropy_bound.md -------------------------------------------------------------------------------- /src/dvoretzky_kiefer_wolfowitz_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/dvoretzky_kiefer_wolfowitz_inequality.md -------------------------------------------------------------------------------- /src/efron_stein.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/efron_stein.md -------------------------------------------------------------------------------- /src/fano_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/fano_inequality.md -------------------------------------------------------------------------------- /src/gaussian_concentration_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/gaussian_concentration_inequality.md -------------------------------------------------------------------------------- /src/generic_chaining.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/generic_chaining.md -------------------------------------------------------------------------------- /src/hoeffding_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/hoeffding_inequality.md -------------------------------------------------------------------------------- /src/hypercontractive_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/hypercontractive_inequality.md -------------------------------------------------------------------------------- /src/le_cam_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/le_cam_inequality.md -------------------------------------------------------------------------------- /src/le_cam_method.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/le_cam_method.md -------------------------------------------------------------------------------- /src/markov_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/markov_inequality.md -------------------------------------------------------------------------------- /src/maximal_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/maximal_inequality.md -------------------------------------------------------------------------------- /src/pinsker_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/pinsker_inequality.md -------------------------------------------------------------------------------- /src/poisson_moment_generating_function.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/poisson_moment_generating_function.md -------------------------------------------------------------------------------- /src/prekopa_leindler_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/prekopa_leindler_inequality.md -------------------------------------------------------------------------------- /src/slepian_inequality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/slepian_inequality.md -------------------------------------------------------------------------------- /src/subadditivity_of_entropy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/subadditivity_of_entropy.md -------------------------------------------------------------------------------- /src/sudakov_minoration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delta2323/ml-formulas/HEAD/src/sudakov_minoration.md --------------------------------------------------------------------------------