gitextract_sn16q5ml/ ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── scripts/ │ ├── examples/ │ │ └── Test_FDB_Loader.ipynb │ └── reproducibility/ │ ├── afd/ │ │ ├── README.md │ │ ├── configs/ │ │ │ ├── CreditCardFraudDetection.json │ │ │ ├── FakeJobPostingPrediction.json │ │ │ ├── Fraudecommerce.json │ │ │ ├── IEEECISFraudDetection.json │ │ │ ├── IPBlocklist.json │ │ │ ├── MaliciousURL.json │ │ │ ├── SimulatedCreditCardTransactionsSparkov.json │ │ │ ├── TwitterBotAccounts.json │ │ │ └── VehicleLoanDefaultPrediction.json │ │ ├── create_afd_resources.py │ │ └── score_afd_model.py │ ├── autogluon/ │ │ ├── README.md │ │ ├── benchmark_ag.py │ │ └── example-ag-ieeecis.ipynb │ ├── autosklearn/ │ │ ├── README.md │ │ └── benchmark_autosklearn.py │ ├── benchmark_utils.py │ ├── h2o/ │ │ ├── README.md │ │ ├── benchmark_h2o.py │ │ └── example-h2o-ieeecis.ipynb │ └── label-noise/ │ ├── benchmark_experiments.ipynb │ ├── feature_dict.py │ ├── load_fdb_datasets.py │ └── micro_models.py ├── setup.py └── src/ ├── __init__.py └── fdb/ ├── __init__.py ├── datasets.py ├── kaggle_configs.py ├── preprocessing.py ├── preprocessing_objects.py └── versioned_datasets/ ├── __init__.py └── ipblock/ └── __init__.py