随笔分类 -  机器学习笔记

PRML学习过程中的一些公式推导及程序实现
摘要: 阅读全文
posted @ 2019-11-06 16:00 东宫得臣 阅读(247) 评论(0) 推荐(0) 编辑
摘要:The central idea is to extract linear combinations of the inputs as derived features, and then model the target as a nonlinear function of these featu 阅读全文
posted @ 2019-09-16 19:09 东宫得臣 阅读(490) 评论(0) 推荐(0) 编辑
摘要:Suppose that we model each class density as multivariate Gaussian, in practice we do not know the parameters of the Gaussian distributions, and will n 阅读全文
posted @ 2019-09-16 10:39 东宫得臣 阅读(209) 评论(0) 推荐(0) 编辑
摘要:The hidden neurons act as feature detectors; as such, they play a critical role in the operation of a multiplayer perceptron. As the learning process 阅读全文
posted @ 2019-09-10 11:26 东宫得臣 阅读(345) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include <sstream> #include <fstream> #include <algorithm> #include <vector> void Conv(std::vector<std::vector<int> > &vv_image, s 阅读全文
posted @ 2019-09-06 11:33 东宫得臣 阅读(447) 评论(0) 推荐(0) 编辑
摘要:import pandas as pd import numpy as np import math data = pd.read_csv('c:\\housing.csv') room_nums = data['total_rooms'].tolist() room_mean = np.mean( 阅读全文
posted @ 2019-07-31 18:56 东宫得臣 阅读(237) 评论(0) 推荐(0) 编辑
摘要:#include <iostream>#include <vector>#include <cmath>#include <algorithm>#include <numeric>#include <fstream>#include <sstream>#include <functional> do 阅读全文
posted @ 2019-06-21 01:28 东宫得臣 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-06-19 11:20 东宫得臣 阅读(162) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include <vector> #include <cmath> #include <algorithm> #include <numeric> double myfunction(double num) { return exp(num); } temp 阅读全文
posted @ 2019-06-19 09:55 东宫得臣 阅读(1727) 评论(0) 推荐(0) 编辑
摘要:If we compare this to the LMS update rule, we see that it looks identical; but this is not the same algorithm, because h(x) is now defined as a none-l 阅读全文
posted @ 2019-06-11 23:37 东宫得臣 阅读(133) 评论(0) 推荐(0) 编辑
摘要:Under the previous probabilistic assumptions on the data, least-squares regression corresponds to finding the maximum likelihood estimate of θ. This i 阅读全文
posted @ 2019-06-11 22:30 东宫得臣 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-05-16 12:14 东宫得臣 阅读(82) 评论(0) 推荐(0) 编辑
摘要:The learning algorithm has the property that it can modify its input/output relationship f-hat in response to differences yi-f(xi)-hat between the ori 阅读全文
posted @ 2019-05-10 11:18 东宫得臣 阅读(225) 评论(0) 推荐(0) 编辑
摘要:Most statistical approaches to outlier detection are based on building a probability distribution model and considering how likely objects are under t 阅读全文
posted @ 2019-05-09 11:39 东宫得臣 阅读(266) 评论(0) 推荐(0) 编辑
摘要:#include <iostream> #include <vector> #include <cstddef> #include <string> #include <sstream> #include <fstream> #include <algorithm> #include <cmath> 阅读全文
posted @ 2019-04-25 10:39 东宫得臣 阅读(139) 评论(0) 推荐(0) 编辑
摘要:template <class T> double VectorMedian(std::vector<T> &In) { std::sort(In.begin(), In.end()); if(In.size() % 2 == 0) { return 0.5*(In.at(In.size()/2)+ 阅读全文
posted @ 2019-04-10 20:08 东宫得臣 阅读(146) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-04-01 09:30 东宫得臣 阅读(221) 评论(0) 推荐(0) 编辑
摘要:Many linear parametric models can be re-cast into an equivalent 'dual representstion' in which the predictions are also based on linear combinations o 阅读全文
posted @ 2019-03-31 17:17 东宫得臣 阅读(146) 评论(0) 推荐(0) 编辑
摘要:Newton's method is primarily a method for finding the zeros of a function, say f(w), that is, a method for finding solutions to the equation f(w)=0. T 阅读全文
posted @ 2019-03-31 16:23 东宫得臣 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-03-28 06:56 东宫得臣 阅读(149) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示