Benchmarking-and-MLI-experiments-on-the-Adult-dataset
Benchmarking-and-MLI-experiments-on-the-Adult-dataset copied to clipboard
Contains benchmarking and interpretability experiments on the Adult dataset using several libraries
Results
1
Benchmarking-and-MLI-experiments-on-the-Adult-dataset issues
Sort by
recently updated
recently updated
newest added
In the [benchmark file](Benchmarking_experiments_on_the_Adult_dataset_and_interpretability.ipynb) We use the `LabelEncoder` on our training and testing data separately, which will cause index mismatch. ```python from sklearn.preprocessing import LabelEncoder train_preprocessed = train.apply(LabelEncoder().fit_transform) test_preprocessed =...