Update URLs.

This commit is contained in:
Marcel Keller
2024-07-19 12:31:07 +10:00
parent 48fbbd09f3
commit d4933d1d30
2 changed files with 2 additions and 2 deletions

View File

@@ -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)