摘要: Support Vector Machines 支持向量机 支持向量机是监督学习算法的一种,在学习复杂的非线性方程时提供了一种更为清晰、更为强大的学习方式。 Optimization objective Alternative view of logistic regression 先介绍一下逻辑回 阅读全文
posted @ 2020-02-11 00:02 Albert_s 阅读(537) 评论(0) 推荐(1)
摘要: Machine learning system design Prioritizing what to work on: Spam classification example 在设计复杂的机器学习系统时将会遇到的主要问题,以及给出一些如何巧妙构建一个复杂的机器学习系统的建议。 Building a 阅读全文
posted @ 2020-02-09 16:47 Albert_s 阅读(470) 评论(0) 推荐(0)
摘要: Advice for applying machine learning Decide what to try next Debugging a learning algorithm 调试学习算法 Suppose you have implemented regularized linear reg 阅读全文
posted @ 2020-02-06 23:28 Albert_s 阅读(729) 评论(0) 推荐(0)
摘要: Neural Networks: Learning 在给定训练集的情况下,为神经网络拟合参数的学习方法。 Cost function Neural Network (Classification) 神经网络在分类问题中的应用 符号说明: 1. $L$ = total no. of layers in 阅读全文
posted @ 2020-02-06 23:27 Albert_s 阅读(540) 评论(1) 推荐(1)
摘要: Neural Networks: Representation 神经网络 Non linear hypotheses 非线性分类器 为什么要研究神经网络?先看几个机器学习问题的例子。 1. 考虑这个监督学习分类的问题,我们已经有了对应的训练集。 如果利用逻辑回归算法来解决这个问题,首先要构造一个包含 阅读全文
posted @ 2020-02-04 22:18 Albert_s 阅读(825) 评论(0) 推荐(0)
摘要: Regularization 正则化 The Problem of Overfitting 过拟合问题 什么是过拟合问题、利用正则化技术改善或者减少过拟合问题。 Example: Linear regression (housing prices) 线性回归中的过拟合 对5个训练集建立线性回归模型, 阅读全文
posted @ 2020-01-19 13:52 Albert_s 阅读(1132) 评论(0) 推荐(2)
摘要: Logistic Regression 逻辑回归 Classification examples Email: Spam/Not Spam? 电子邮件是否是垃圾邮件 Online Transactions: Fraudulent(Yes / No)? 网上交易是否是诈骗 Turmor: Malign 阅读全文
posted @ 2020-01-18 20:38 Albert_s 阅读(1566) 评论(0) 推荐(1)
摘要: Octave Tutorial Basic Operations 基本操作 基本操作 基本运算:+、-、*、/、^(指数) 逻辑运算:==、~=、&&、||、xor(a, b),0为False、1为True 注释:%注释内容 等待命令样式可使用PS1命令更改:PS1('>>') 变量 赋值:变量名 阅读全文
posted @ 2020-01-15 18:47 Albert_s 阅读(211) 评论(0) 推荐(0)
摘要: Linear Regression with multiple variables 多变量线性回归 Multiple Features Notation 符号说明 \(n\) = number of features. 特征量的个数 \(x^{(i)}\) = input (features) of 阅读全文
posted @ 2020-01-14 11:57 Albert_s 阅读(583) 评论(0) 推荐(0)
摘要: Linear Algebra review (optional) 线代复习(选学) Matrices and Vectors 矩阵和向量 Matrix Definition: Rectangle array of numbers. 矩阵是矩形数字数组 Dimension of matrix: num 阅读全文
posted @ 2020-01-10 15:20 Albert_s 阅读(343) 评论(0) 推荐(0)