Last active
November 22, 2020 19:56
-
-
Save RobotOptimist/1bfd719dc621af45a0e633ffa7ecb9ec to your computer and use it in GitHub Desktop.
MLNET Simple Regression
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM jmacivor/dotnet-binder:0.1.1 | |
ARG NB_USER=jovyan | |
ARG NB_UID=1000 | |
USER $NB_USER | |
ENV HOME=/home/$NB_USER | |
WORKDIR $HOME | |
COPY ml_net_simple_regression.ipynb $HOME/ml_net_simple_regression.ipynb | |
COPY Salary_Data.csv $HOME/Salary_Data.csv |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
YearsExperience | Salary | |
---|---|---|
1.1 | 39343.00 | |
1.3 | 46205.00 | |
1.5 | 37731.00 | |
2.0 | 43525.00 | |
2.2 | 39891.00 | |
2.9 | 56642.00 | |
3.0 | 60150.00 | |
3.2 | 54445.00 | |
3.2 | 64445.00 | |
3.7 | 57189.00 | |
3.9 | 63218.00 | |
4.0 | 55794.00 | |
4.0 | 56957.00 | |
4.1 | 57081.00 | |
4.5 | 61111.00 | |
4.9 | 67938.00 | |
5.1 | 66029.00 | |
5.3 | 83088.00 | |
5.9 | 81363.00 | |
6.0 | 93940.00 | |
6.8 | 91738.00 | |
7.1 | 98273.00 | |
7.9 | 101302.00 | |
8.2 | 113812.00 | |
8.7 | 109431.00 | |
9.0 | 105582.00 | |
9.5 | 116969.00 | |
9.6 | 112635.00 | |
10.3 | 122391.00 | |
10.5 | 121872.00 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment