- 博客(260)
- 资源 (40)
- 收藏
- 关注
原创 Week11_1Application Photo OCR
Week11_1Application Photo OCR第 1 题Suppose you are running a sliding window detector to find text in images. Your input images are 1000x1000 pixels. You will run your sliding windows detector at...
2018-02-25 11:03:49
6251
原创 Week10_1Large Scale Machine Learning
Week10_1Large Scale Machine LearningWeek10_1Large Scale Machine Learning第 1 题第 2 题第 3 题第 4 题第 5 题第 1 题Suppose you are training a logistic regression classifier using stochastic gr...
2018-02-25 11:01:31
8842
原创 Week9_3Program_Anomaly Detection and Recommender Systems编程解析
Week9_3Program_Anomaly Detection and Recommender Systems编程解析1. Anomaly detection分析1.1 Estimate gaussian parameters 0 / 15计算公式: μi=1m∑j=1mx(j)iμi=1m∑j=1mxi(j)\mu_i = \frac{1}{m}\sum\limits_...
2018-02-25 11:00:51
860
原创 Week9_2Recommender Systems
Week9_2Recommender SystemsWeek9_2Recommender Systems第 1 题第 2 题第 3 题第 4 题第 5 题第 1 题Suppose you run a bookstore, and have ratings (1 to 5 stars) of books. Your collaborative filt...
2018-02-25 10:58:27
2196
原创 Week9_1Anomaly Detection
Week9_1Anomaly DetectionWeek9_1Anomaly Detection第 1 题第 2 题第 3 题第 4 题第 5 题第 1 题For which of the following problems would anomaly detection be a suitable algorithm?Given an im...
2018-02-25 10:57:19
2600
原创 Week8_3Program_K-Means Clustering and PCA编程解析
Week8_3Program_K-Means Clustering and PCA编程解析1. ex7 流程分析1.1 plotData按照ex7.m中的流程走一遍2. 编程分析2.1 Find closest centroids 0 / 30计算公式: ||x(i)−μj||2||x(i)−μj||2||x^{(i)}- \mu_j||^2 ...
2018-02-25 10:55:55
644
原创 Week8_2Principal Component Analysis
Week8_2Principal Component Analysis第 1 题Consider the following 2D dataset: Which of the following figures correspond to possible values that PCA may return for u(1)u(1)u^{(1)} (the first eigen...
2018-02-25 10:55:28
1856
原创 Week8_1Unsupervised Learning
Week8_1Unsupervised LearningWeek8_1Unsupervised Learning第 1 题第 2 题第 3 题第 4 题第 5 题第 1 题For which of the following tasks might K-means clustering be a suitable algorithm? Select al...
2018-02-25 10:52:58
1397
原创 Week7_2Program_Support Vector Machines编程解析
Week7_2Program_Support Vector Machines编程解析1. ex6 流程分析1.1 plotData按照ex6.m中的流程走一遍2. 编程分析2.0 计算公式hθ(x)=minθC∑i=1m[y(i)cost1(θTx(i))+(1−y(i))cost0(θTx(i))]+12∑i=1nθ2jhθ(x)=minθC∑...
2018-02-25 10:51:49
589
原创 Week7_1Support Vector Machinesg
Week7_1Support Vector Machinesg第 1 题Suppose you have trained an SVM classifier with a Gaussian kernel, and it learned the following decision boundary on the training set: You suspect that the...
2018-02-25 10:51:22
1240
原创 Week6_3Machine Learning System Design
Week6_3Machine Learning System Design第 1 题You are working on a spam classification system using regularized logistic regression. “Spam” is a positive class (y = 1) and “not spam” is the negative...
2018-02-25 10:49:09
5609
原创 w6_2Regularized Linear Regression and BiasVariance编程解析
w6_2Regularized Linear Regression and BiasVariance编程解析1. ex5 流程分析1.1 plotData按照ex5.m中的流程走一遍2. 编程分析2.0 计算公式代价函数: hθ(x)=12m∑i=1m(hθ(x(i)−y(i))2+λ2m(∑j=1nθ2j)hθ(x)=12m∑i=1m(hθ(...
2018-02-25 10:48:36
597
原创 Week6_1Advice for Applying Machine Learning
Week6_1Advice for Applying Machine LearningWeek6_1Advice for Applying Machine Learning第 1 题第 2 题第 3 题第 4 题第 5 题第 1 题You train a learning algorithm, and find that it has unaccepta...
2018-02-25 10:47:58
1881
原创 w5_2Neural Network Learning编程解析
w5_2Neural Network Learning编程解析1. ex4 流程分析1.1 plotData按照ex4.m中的流程走一遍%% Setup the parameters you will use for this exerciseinput_layer_size = 400; % 20x20 Input Images of Digitshidde...
2018-02-25 10:46:33
763
原创 Week5_1Neural Networks Learning
Week5_1Neural Networks LearningWeek5_1Neural Networks Learning第 1 题第 2 题第 3 题第 4 题第 5 题第 1 题You are training a three layer neural network and would like to use backpropagation t...
2018-02-25 10:45:43
3594
原创 w4_2Multi-class Classification and Neural Networks编程解析
w4_2Multi-class Classification and Neural Networks编程解析w4_2Multi-class Classification and Neural Networks编程解析ex3m1 ex3m框架分析2 Regularized logistic regression 0 3021 logistic regression Cost ...
2018-02-25 10:44:42
909
原创 Week4_1Neural Networks Representation
Week4_1Neural Networks RepresentationWeek4_1Neural Networks Representation第 1 题第 2 题第 3 题第 4 题第 5 题第 1 题Which of the following statements are true? Check all that apply.The ac...
2018-02-25 10:43:52
3783
原创 机器学习测试Week3_3Program_Logistic Regression编程解析
w3_3Program_Logistic Regression编程解析1. Logistic Regression1.1 plotData把数据可视化, 在plotData.m中添加:% Find Indices of Positive and Negative Examplespos = find(y==1); neg = find(y == 0);% Plot
2018-01-10 20:39:41
1154
原创 机器学习测试Week3_2Regularization
Week3_2Regularization第 1 题You are training a classification model with logistic regression. Which of the following statements are true? Check all that apply.Introducing regularization to t
2018-01-10 20:39:01
13524
2
原创 机器学习测试Week3_1Logistic Regression
Week3_1Logistic Regression第 1 题Suppose that you have trained a logistic regression classifier, and it outputs on a new example x a prediction hθ(x)h_\theta(x) = 0.4. This means (check all that a
2018-01-10 20:37:44
17650
3
原创 机器学习测试Week2_3_Program_Linear Regression编程解析
Week 2 | 3Program_Linear Regression编程解析1. 单变量1.1 Warm up exercise 10 / 10写出一个5阶单位矩阵 A = eye(5);1.2 Compute cost for one variable 40 / 40写出 损失函数 J(θ)=12m∑i=1m(hθ(x(i))−y(i))2J\le
2018-01-10 20:36:04
900
原创 机器学习测试Week2_octive_usage
Week 2 | octive的安装及使用一. 源码安装octive环境: ubuntu 16.04 x64 最终的解决方法,可直接看 下方1.3 1.1 直接用apt-get 安装版本不对cong@msi:~$ sudo apt-get install octave cong@msi:~$ octave-cli GNU Octave, version
2018-01-10 20:33:55
1070
原创 机器学习-1编程之单变量线性回归
Coursera机器学习笔记1-单变量线性回归Coursera机器学习笔记1-单变量线性回归一 理论1 训练集2 基本定义21 假设函数补充 关于假设函数的向量表示22 损失函数平方误差函数3 梯度下降算法4 推导过程5 可编程的theta更新过程二 核心代码说明111 逐行说明三 全部代码1 全部代码附录 参考文献...
2018-01-10 20:27:34
648
原创 机器学习测试Week2_2_OctaveMatlab Tutorial
Week 2 | 2_OctaveMatlab Tutorial第 1 题Suppose I first execute the following in Octave/Matlab: A = [1 2; 3 4; 5 6]; B = [1 2 3; 4 5 6]; Which of the following are then valid commands? Check al
2018-01-08 13:03:42
8644
原创 机器学习测试Week2_1Linear Regression with Multiple Variables
Week 2 | 1Linear Regression with Multiple Variables第 1 题Suppose m=4 students have taken some class, and the class had a midterm exam and a final exam. You have collected a dataset of their score
2018-01-08 13:03:12
3284
1
原创 机器学习测试Week1_3_Linear Algebra
Week 1 | 3_Linear Algebra第 1 题Let two matrices be A=[4639],B=[−2−592]A = \begin{bmatrix} 4 & 3 \\ 6 & 9 \end{bmatrix}, \;\;\;\;\;\;\;\;\;\; B = \begin{bmatrix} -2 & 9 \\ -5 & 2 \end{bmatrix
2018-01-08 13:00:31
1795
原创 机器学习测试Week1_2_Linear Regression with One Variable
Week 1 | 1_Linear Regression with One Variable第 1 题Consider the problem of predicting how well a student does in her second year of college/university, given how well she did in her first year.
2018-01-08 12:57:11
8705
1
原创 机器学习测试Week1_1_Introduction
Week 1 | 1_Introduction第 1 题A computer program is said to learn from experience E with respect to some task T and some performance measure P if its performance on T, as measured by P, improves
2018-01-07 20:30:39
4691
4
原创 机器学习-FAQ
Week 0 FAQ一. 各种问题1.1 win7无法播放视频的问题a. 修改host文件, 加入以下内容52.84.246.90 d3c33hcgiwev3.cloudfront.net52.84.246.252 d3c33hcgiwev3.cloudfront.net52.84.246.144 d3c33hcgiwev3.cloudfront.n
2018-01-05 21:05:56
419
构建用grub引导linux-0.12内核的硬盘镜像脚本加工具
2016-11-05
创建grub引导的硬盘镜像脚本
2016-11-05
jdk-6u35-linux-x64 (1/2)
2013-12-13
jdk 6u35 linux x64 (2/2)
2013-12-13
android 下读取framebuffer的内容
2013-11-28
Learning+the+Vi+and+Vim+Editors+(7th+Edition).pdf
2013-01-14
OpenGLProgrammingGuide7thEditionCHS_红宝书.pdf
2013-01-08
openglES_资料打包.rar
2013-01-03
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人