Skip to content

Commit 76dd66e

Browse files
author
Dib, Gerges
committed
Fixed setence in ex1 and comment in ex3
1 parent 0c52aa0 commit 76dd66e

File tree

92 files changed

+3
-3
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+3
-3
lines changed

.gitignore

100755100644
File mode changed.

Exercise1/Data/ex1data1.txt

100755100644
File mode changed.

Exercise1/Data/ex1data2.txt

100755100644
File mode changed.

Exercise1/Figures/cost_function.png

100755100644
File mode changed.

Exercise1/Figures/dataset1.png

100755100644
File mode changed.

Exercise1/Figures/learning_rate.png

100755100644
File mode changed.

Exercise1/Figures/regression_result.png

100755100644
File mode changed.

Exercise1/exercise1.ipynb

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@
192192
"\n",
193193
"Now you will implement linear regression with one variable to predict profits for a food truck. Suppose you are the CEO of a restaurant franchise and are considering different cities for opening a new outlet. The chain already has trucks in various cities and you have data for profits and populations from the cities. You would like to use this data to help you select which city to expand to next. \n",
194194
"\n",
195-
"The file `Data/ex1data1.txt` contains the dataset for our linear regression problem. The first column is the population of a city and the second column is the profit of a food truck in that city. A negative value for profit indicates a loss. \n",
195+
"The file `Data/ex1data1.txt` contains the dataset for our linear regression problem. The first column is the population of a city (in 10,000s) and the second column is the profit of a food truck in that city (in $10,000s). A negative value for profit indicates a loss. \n",
196196
"\n",
197197
"We provide you with the code needed to load this data. The dataset is loaded from the data file into the variables `x` and `y`:"
198198
]

Exercise1/utils.py

100755100644
File mode changed.

Exercise2/Data/ex2data1.txt

100755100644
File mode changed.

0 commit comments

Comments
 (0)