Skip to content

Commit 7390d87

Browse files
derekeverettDerek Everett
andauthored
Include download of loan default dataset when downloading 'all' datasets. This was the only dataset that is currently excluded, and can lead to confusion when following current documentation to run the cpp/decision_tree/loan_default_prediction example. (#247)
Co-authored-by: Derek Everett <[email protected]>
1 parent 33988a1 commit 7390d87

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/download_data_set.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def pima_diabetes_dataset():
154154
progress_bar("pima-indians-diabetes.csv", pima)
155155

156156
def loan_default_dataset():
157-
print("Downloading load default dataset...")
157+
print("Downloading loan default dataset...")
158158
loan = requests.get("http://datasets.mlpack.org/LoanDefault.csv")
159159
progress_bar("LoanDefault.csv", loan)
160160

@@ -203,6 +203,7 @@ def all_datasets():
203203
dominant_color_dataset()
204204
covertype_dataset()
205205
dga_dataset()
206+
loan_default_dataset()
206207

207208
if __name__ == '__main__':
208209

0 commit comments

Comments
 (0)