Skip to content

Commit c327232

Browse files
author
Quinn Liu
committed
added comments and MIT license
1 parent 6c6a846 commit c327232

File tree

4 files changed

+26
-5
lines changed

4 files changed

+26
-5
lines changed

LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2014 Quinn Liu
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

supervisedLearning/linearRegressionIn1Variable/plotData.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@ function plotData(x, y)
1414
ylabel('Profit in $10,000s'); % Set the y-axis label
1515
xlabel('Population of City in 10,000s'); % Set the x-axis label
1616

17-
end
17+
end

supervisedLearning/linearRegressionIn1Variable/run.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
%% ======================= Part 1: Plotting =======================
1010
fprintf('Plotting Data ...\n')
1111
data = load('inputTrainingSet.txt');
12-
X = data(:, 1); y = data(:, 2);
12+
X = data(:, 1);
13+
y = data(:, 2);
1314
m = length(y); % number of training examples
1415

1516
% Plot Data
16-
% Note: You have to complete the code in plotData.m
1717
plotData(X, y);
1818

1919
fprintf('Program paused. Press enter to continue.\n');

unsupervisedLearning/neuralNetworks/digitRecognition/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ Recognizing Digits with Neural Networks
99
3. navigate into the folder with the above files
1010

1111
4. type ```runMultiClassLogisticRegressionNeuralNetwork``` in Octave or Matlab command line to see an example of a trained
12-
2 layer neural network to recognize hand written digits with 95% success rate.
12+
2 layer neural network to recognize MNIST hand written digits with 95% success rate.
1313

1414
5. type ```runMultiClassNeuralNetworkWith3Layers``` in Octave or Matlab command line to see an example of a trained
15-
3 layer neural network to recognize hand written digits with 97% sucess rate.
15+
3 layer neural network to recognize MNIST hand written digits with 97% sucess rate.
1616

1717
<h2>Neural Network Review</h2>
1818
- Why a new non-linear hypotheses?

0 commit comments

Comments
 (0)