Results 1 issues of nicechester

load_csv line can be since there's `columns_to_ignore` param's supported ``` data, labels = load_csv('titanic_dataset.csv', target_column=0, columns_to_ignore=[2, 7], categorical_labels=True, n_classes=2) ``` and we don't need to do that in preprocess() ```...