Skip to content

Commit

Permalink
Update URLs.
Browse files Browse the repository at this point in the history
  • Loading branch information
mkskeller committed Jul 19, 2024
1 parent 48fbbd0 commit d4933d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Programs/Source/easy_adult.mpc
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ from sklearn.model_selection import train_test_split
from Compiler import decision_tree

data = pandas.read_csv(
'https://datahub.io/machine-learning/adult/r/adult.csv')
'https://raw.githubusercontent.com/jbrownlee/Datasets/master/adult-all.csv', header=None)
#'/tmp/adult.csv')

data, attr_types = decision_tree.preprocess_pandas(data)
Expand Down
2 changes: 1 addition & 1 deletion doc/machine-learning.rst
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ library::
from Compiler import decision_tree

data = pandas.read_csv(
'https://datahub.io/machine-learning/adult/r/adult.csv')
'https://raw.githubusercontent.com/jbrownlee/Datasets/master/adult-all.csv', header=None)

data, attr_types = decision_tree.preprocess_pandas(data)

Expand Down

0 comments on commit d4933d1

Please sign in to comment.