data-imputation-paper
Research code for the paper "A Benchmark for Data Imputation Methods".
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
○.zenodo.json file
-
✓DOI references
Found 3 DOI reference(s) in README -
✓Academic publication links
Links to: frontiersin.org -
○Committers with academic emails
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.5%) to scientific vocabulary
Keywords
Repository
Research code for the paper "A Benchmark for Data Imputation Methods".
Basic Info
- Host: GitHub
- Owner: se-jaeger
- License: apache-2.0
- Language: Jupyter Notebook
- Default Branch: main
- Homepage: https://www.frontiersin.org/articles/10.3389/fdata.2021.693674/full
- Size: 7.88 MB
Statistics
- Stars: 8
- Watchers: 2
- Forks: 2
- Open Issues: 0
- Releases: 0
Topics
Metadata Files
README.md
Source Code for the Paper: Benchmark for Data Imputation Methods
Check out the final paper at: https://www.frontiersin.org/articles/10.3389/fdata.2021.693674/full
Disclaimer
This is research code and in no way ready for production usage!
Citing us!
If you want to reference our paper or this code, please use the following BibTex:
@ARTICLE{imputation_benchmark_jaeger_2021,
AUTHOR={Jäger, Sebastian and Allhorn, Arndt and Bießmann, Felix},
TITLE={A Benchmark for Data Imputation Methods},
JOURNAL={Frontiers in Big Data},
VOLUME={4},
PAGES={48},
YEAR={2021},
URL={https://www.frontiersin.org/article/10.3389/fdata.2021.693674},
DOI={10.3389/fdata.2021.693674},
ISSN={2624-909X},
ABSTRACT={With the increasing importance and complexity of data pipelines, data quality became one of the key challenges in modern software applications. The importance of data quality has been recognized beyond the field of data engineering and database management systems (DBMSs). Also, for machine learning (ML) applications, high data quality standards are crucial to ensure robust predictive performance and responsible usage of automated decision making. One of the most frequent data quality problems is missing values. Incomplete datasets can break data pipelines and can have a devastating impact on downstream ML applications when not detected. While statisticians and, more recently, ML researchers have introduced a variety of approaches to impute missing values, comprehensive benchmarks comparing classical and modern imputation approaches under fair and realistic conditions are underrepresented. Here, we aim to fill this gap. We conduct a comprehensive suite of experiments on a large number of datasets with heterogeneous data and realistic missingness conditions, comparing both novel deep learning approaches and classical ML imputation methods when either only test or train and test data are affected by missing data. Each imputation method is evaluated regarding the imputation quality and the impact imputation has on a downstream ML task. Our results provide valuable insights into the performance of a variety of imputation methods under realistic conditions. We hope that our results help researchers and engineers to guide their data preprocessing method selection for automated data quality improvement.}
}
Installation
In order to set up the necessary environment:
- create an environment
data-imputation-paperwith the help of conda,bash conda env create -f environment.yaml - activate the new environment with
bash conda activate data-imputation-paper - install
jengawithbash cd src/jenga python setup.py develop - install
data-imputation-paperwith:bash cd ../.. python setup.py develop # or `install`
Optional and needed only once after git clone:
- install several pre-commit git hooks with:
bash pre-commit installand checkout the configuration under.pre-commit-config.yaml. The-n, --no-verifyflag ofgit commitcan be used to deactivate pre-commit hooks temporarily.
Then take a look into the scripts and notebooks folders.
Dependency Management & Reproducibility
- Always keep your abstract (unpinned) dependencies updated in
environment.yamland eventually insetup.cfgif you want to ship and install your package viapiplater on. - Create concrete dependencies as
environment.lock.yamlfor the exact reproduction of your environment with:conda env export -n data-imputation-paper -f environment.lock.yamlFor multi-OS development, consider using--no-buildsduring the export. - Update your current environment with respect to a new
environment.lock.yamlusing:conda env update -f environment.lock.yaml --prune### Project Organization
├── AUTHORS.rst <- List of developers and maintainers.
├── CHANGELOG.rst <- Changelog to keep track of new features and fixes.
├── LICENSE.txt <- License as chosen on the command-line.
├── README.md <- The top-level README for developers.
├── configs <- Directory for configurations of model & application.
├── data
│ ├── external <- Data from third party sources.
│ ├── interim <- Intermediate data that has been transformed.
│ ├── processed <- The final, canonical data sets for modeling.
│ └── raw <- The original, immutable data dump.
├── docs <- Directory for Sphinx documentation in rst or md.
├── environment.yaml <- The conda environment file for reproducibility.
├── models <- Trained and serialized models, model predictions,
│ or model summaries.
├── notebooks <- Jupyter notebooks. Naming convention is a number (for
│ ordering), the creator's initials and a description,
│ e.g. `1.0-fw-initial-data-exploration`.
├── references <- Data dictionaries, manuals, and all other materials.
├── reports <- Generated analysis as HTML, PDF, LaTeX, etc.
│ └── figures <- Generated plots and figures for reports.
├── scripts <- Analysis and production scripts which import the
│ actual PYTHON_PKG, e.g. train_model.
├── setup.cfg <- Declarative configuration of your project.
├── setup.py <- Use `python setup.py develop` to install for development or
| or create a distribution with `python setup.py bdist_wheel`.
├── src
│ └── data-imputation-paper <- Actual Python package where the main functionality goes.
│ └── jenga <- Jenga code, used to add data corruptions/missingness.
├── tests <- Unit tests which can be run with `py.test`.
├── .coveragerc <- Configuration for coverage reports of unit tests.
├── .isort.cfg <- Configuration for git hook that sorts imports.
└── .pre-commit-config.yaml <- Configuration of pre-commit git hooks.
Note
This project has been set up using PyScaffold 3.2.2 and the dsproject extension 0.4. For details and usage information on PyScaffold see https://pyscaffold.org/.
Owner
- Name: Sebastian Jäger
- Login: se-jaeger
- Kind: user
- Location: Berlin
- Company: @calgo-lab
- Website: https://sebastian-jaeger.me
- Twitter: se_jaeger
- Repositories: 8
- Profile: https://github.com/se-jaeger
Mastodon - (at)seja(at)sigmoid.social | LinkedIn - se-jaeger | Google Scholar - https://scholar.google.co.uk/citations?user=oQb71zUAAAAJ
Citation (CITATION.bib)
@ARTICLE{imputation_benchmark_jaeger_2021,
AUTHOR={Jäger, Sebastian and Allhorn, Arndt and Bießmann, Felix},
TITLE={A Benchmark for Data Imputation Methods},
JOURNAL={Frontiers in Big Data},
VOLUME={4},
PAGES={48},
YEAR={2021},
URL={https://www.frontiersin.org/article/10.3389/fdata.2021.693674},
DOI={10.3389/fdata.2021.693674},
ISSN={2624-909X},
ABSTRACT={With the increasing importance and complexity of data pipelines, data quality became one of the key challenges in modern software applications. The importance of data quality has been recognized beyond the field of data engineering and database management systems (DBMSs). Also, for machine learning (ML) applications, high data quality standards are crucial to ensure robust predictive performance and responsible usage of automated decision making. One of the most frequent data quality problems is missing values. Incomplete datasets can break data pipelines and can have a devastating impact on downstream ML applications when not detected. While statisticians and, more recently, ML researchers have introduced a variety of approaches to impute missing values, comprehensive benchmarks comparing classical and modern imputation approaches under fair and realistic conditions are underrepresented. Here, we aim to fill this gap. We conduct a comprehensive suite of experiments on a large number of datasets with heterogeneous data and realistic missingness conditions, comparing both novel deep learning approaches and classical ML imputation methods when either only test or train and test data are affected by missing data. Each imputation method is evaluated regarding the imputation quality and the impact imputation has on a downstream ML task. Our results provide valuable insights into the performance of a variety of imputation methods under realistic conditions. We hope that our results help researchers and engineers to guide their data preprocessing method selection for automated data quality improvement.}
}
GitHub Events
Total
- Fork event: 1
Last Year
- Fork event: 1
Committers
Last synced: 8 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Sebastian Jäger | m****e@s****e | 43 |
| tripl3a | 3****a | 2 |
| felixbiessmann | f****n | 1 |
| Sebastian Jäger | g****b@s****e | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 8 months ago
All Time
- Total issues: 4
- Total pull requests: 55
- Average time to close issues: 23 days
- Average time to close pull requests: 6 days
- Total issue authors: 1
- Total pull request authors: 3
- Average comments per issue: 1.0
- Average comments per pull request: 0.45
- Merged pull requests: 47
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 0
- Pull requests: 0
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 0
- Average comments per issue: 0
- Average comments per pull request: 0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- se-jaeger (3)
Pull Request Authors
- se-jaeger (24)
- tripl3a (5)
- felixbiessmann (1)