机器学习
我想吃虾虾�
这个作者很懒,什么都没留下…
展开
-
Anomaly Detection and Recommender Systems
Anomaly Detection and Recommender SystemsAnomaly Detection1.1 Gaussian (Normal) distribution1.2 Program: Estimate Gaussian1.3 Selecting the threshold, ϵ\epsilonϵselectThreshold: select the "best" ϵ\epsilonϵ based on the F1 scoreRecommender System2.1 Colla原创 2020-08-30 21:45:15 · 242 阅读 · 0 评论 -
【K-Means Clustering and Principal Component Analysis】
K-Means Clustering总结a method to automatically cluster similar data examples together (Unsupervised)given a training set${x^{(1)},\ldots x^{(m)}} $where ), and want to group the data into a few cohesive ‘clusters’.原创 2020-08-16 11:31:07 · 313 阅读 · 0 评论 -
[SVM支持向量机]:Hyperparameter “C, sigma“ selection
Andrew Ng 机器学习笔记SVM 公式总结Cost function for SVMSimularity function (Gaussian Kernal)MatLab 代码: Gridsearch, 通过计算最小validation error来选择C和sigmafunction [C, sigma] = dataset3Params(X, y, Xval, yval)%DATASET3PARAMS returns your choice of C and sigma for P原创 2020-08-07 15:17:17 · 523 阅读 · 0 评论 -
[Support Vector Machine (SVM)]: Gaussian Kernel Matlab Implementation
SVM Gaussian Kernalfunction sim = gaussianKernel(x1, x2, sigma)%RBFKERNEL returns a radial basis function kernel between x1 and x2% sim = gaussianKernel(x1, x2) returns a gaussian kernel between x1 and x2% and returns the value in sim% Ensure tha原创 2020-08-07 14:36:37 · 426 阅读 · 0 评论