Skip to main content

Calculate case difficulty within datasets

Project description

CDmetrics

Case Difficulty (Instance Hardness) metrics in Python, with three ways to measure the difficulty of individual cases: CDmc, CDdm, and CDpu.

Case Difficulty Metrics

  • Case Difficulty Model Complexity (CDmc)

    • CDmc is based on the complexity of the neural network required for accurate predictions.
  • Case Difficulty Double Model (CDdm)

    • CDdm utilizes a pair of neural networks: one predicts a given case, and the other assesses the likelihood that the prediction made by the first model is correct.
  • Case Difficulty Predictive Uncertainty (CDpu)

    • CDpu evaluates the variability of the neural network's predictions.

Getting Started

CDmetrics employs neural networks to measure the difficulty of individual cases in a dataset. The metrics are tailored to different definitions of prediction difficulty and are designed to perform well across various datasets.

Installation

The package was developed using Python. Below, we provide standard installation instructions and guidelines for using CDmetrics to calculate case difficulty on your own datasets.

For users

pip install cdmetrics

For developers

git clone https://github.com/data-intelligence-for-health-lab/CDmetrics.git

Anaconda environment

We strongly recommend using a separate Python environment. We provide an env file environment.yml to create a conda environment with all required dependencies:

conda env create --file environment.yml

Usage

Each metric in CDmetrics requires specific parameters to run.

  • CDmc
    • number_of_NNs: The number of neural network models used to make predictions.
    • resources: The number of CPUs for multi-processing.
from CDmetrics import CDmc

number_of_NNs = 20
resources = {"CPU": 10, "GPU": 0}

CDmc.compute_metric(data, number_of_NNs, target_column, resources)
  • CDdm
    • num_folds: The number of folds to divide the data.
    • max_layers: The maximum number of layers for the neural network hyperparameter tuning range.
    • max_units: The maximum number of units for the neural network hyperparameter tuning range.
    • resources: The number of CPUs and GPUs for hyperparameter tuning with Ray.
from CDmetrics import CDdm

number_of_folds = 5
max_layers = 2
max_units = 3
resources = {"CPU": 10, "GPU": 0}

CDdm.compute_metric(data, num_folds, target_column, max_layers, max_units, resources)
  • CDpu
    • number_of_predictions: The number of prediction probabilities to generate.
    • max_layers: The maximum number of layers for the neural network hyperparameter tuning range.
    • max_units: The maximum number of units for the neural network hyperparameter tuning range.
    • resources: The number of CPUs for multi-processing, and CPUs and GPUs for hyperparameter tuning with Ray.
from CDmetrics import CDpu

number_of_predictions = 100
max_layers = 2
max_units = 3
resources = {"CPU": 10, "GPU": 0}

CDpu.compute_metric(data, target_column, number_of_predictions, max_layers, max_units, resources)

The hyperparameters are tuned using Grid Search with Ray. To change the hyperparameter search space, update the search_space in tune_parameters function in CDmetrics/utils.py.

Guidelines for input dataset

Please follow the recommendations below:

  • The dataset should be preprocessed (scaling, imputation, and encoding must be done before running CDmetrics).
  • Data needs to be passed in a dataframe.
  • Do not include any index column.
  • The target column name must be clearly specified.
  • The metrics only support classification problems with tabular data.
  • CDmc requires data with more than 100 cases to run.

Citation

If you're using CDmetrics in your research or application, please cite our paper:

Kwon, H., Greenberg, M., Josephson, C.B. and Lee, J., 2024. Measuring the prediction difficulty of individual cases in a dataset using machine learning. Scientific Reports, 14(1), p.10474.

@article{kwon2024measuring,
  title={Measuring the prediction difficulty of individual cases in a dataset using machine learning},
  author={Kwon, Hyunjin and Greenberg, Matthew and Josephson, Colin Bruce and Lee, Joon},
  journal={Scientific Reports},
  volume={14},
  number={1},
  pages={10474},
  year={2024},
  publisher={Nature Publishing Group UK London}
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cdmetrics-0.1.7.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

cdmetrics-0.1.7-py3-none-any.whl (8.8 kB view details)

Uploaded Python 3

File details

Details for the file cdmetrics-0.1.7.tar.gz.

File metadata

  • Download URL: cdmetrics-0.1.7.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.18

File hashes

Hashes for cdmetrics-0.1.7.tar.gz
Algorithm Hash digest
SHA256 930d59fbae0e96e4cf7db119ae494a8fbb1dba5464b589aeea81eb6affe97633
MD5 2c43dc6ab027934bcd6041d856502d2f
BLAKE2b-256 c52785ff173bf194caffe9996ad520065992b34212c833bbbdabf4b441f61c52

See more details on using hashes here.

File details

Details for the file cdmetrics-0.1.7-py3-none-any.whl.

File metadata

  • Download URL: cdmetrics-0.1.7-py3-none-any.whl
  • Upload date:
  • Size: 8.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.18

File hashes

Hashes for cdmetrics-0.1.7-py3-none-any.whl
Algorithm Hash digest
SHA256 9816468ff452e4a3703b8c8e326c2ca25712884151b63f94c2f4beae67219f9c
MD5 257985f12354115fbe0291b7cfa43a6b
BLAKE2b-256 571bd2353d0d90e32c5e1b2ee4e822f429288c3e01eb78284669dacf3888e134

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page