Skip to content

Commit

Permalink
Fixed the path for outlier_removal_regression (#374)
Browse files Browse the repository at this point in the history
Co-authored-by: Reuben George <rgeorge@griddynamics.com>
  • Loading branch information
georgereuben and rgeorgegrid authored Apr 18, 2024
1 parent 67919d5 commit 7f710b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outliers/outlier_removal_regression.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@


### load up some practice data with outliers in it
ages = joblib.load( open("./outliers/practice_outliers_ages.pkl", "rb") )
net_worths = joblib.load( open("./outliers/practice_outliers_net_worths.pkl", "rb") )
ages = joblib.load( open("./practice_outliers_ages.pkl", "rb") )
net_worths = joblib.load( open("./practice_outliers_net_worths.pkl", "rb") )



Expand Down

0 comments on commit 7f710b3

Please sign in to comment.