Skip to main content

A simple auto-regressive, 'everything-is-code' style model for MEDS datasets

Project description

MEDS "Everything-is-code" Autoregressive Model

PyPI - Version python codecov tests code-quality license PRs contributors

A MEDS, "Everything-is-code" style Autoregressive Generative Model, capable of zero-shot inference.

This is based on the MEDS-Torch model of the same name.

Installation

pip install MEDS-EIC-AR

Usage

1. Pre-process your data

You have three directories:

  1. $RAW_MEDS_DIR -- The raw MEDS data directory that you want to pre-process.
  2. $INTERMEDIATE_DIR -- An intermediate directory where the partially processed data will be stored prior to tokenization and tensorization.
  3. $FINAL_DATA_DIR -- The final output directory where the tokenized and tensorized data will be stored. This directory is suitable for use in loading the data with meds-torch-data.

Run:

MEICAR_process_data input_dir="$RAW_MEDS_DIR" \
    intermediate_dir="$INTERMEDIATE_DIR" \
    output_dir="$FINAL_DATA_DIR"

You can also run this in demo mode, which lowers the filtering thresholds significantly so the script does not filter out all data:

MEICAR_process_data ... do_demo=True

You can exert more fine-grained control on the filtering with the following environment variables:

  1. MIN_SUBJECTS_PER_CODE: How many subjects must a given code be observed within to be included in the final vocabulary? Note that this excludes some sentinel codes which are always retained.
  2. MIN_EVENTS_PER_SUBJECT: How many events must a subject have to be included in the final dataset?

[!WARNING] I suspect this is not actually working yet. Tests currently just ensure it does not crash; not that the entire output of the pipeline looks as expected.

2. Pre-train the model

You can pre-train the model using the MEICAR_pretrain command. To use this, let us assume you have a new directory to store the pretrained model artifacts called $PRETRAINED_MODEL_DIR. Then, you can run:

MEICAR_pretrain datamodule.config.tensorized_cohort_dir="$FINAL_DATA_DIR" \
    output_dir="$PRETRAINED_MODEL_DIR" \
    datamodule.batch_size=32 \
    trainer.max_epochs=10

to train the model for 10 epochs.

This uses a Hydra configuration system, with the root config located in the _pretrain.yaml file. You can override any of the nested configuration parameters (as shown above via datamodule.config.tensorized_cohort_dir on the command line, though you will more likely materialize an experimental configuration file to disk in yaml form and overwrite the config path and name directly in the normal hydra manner.

[!WARNING] I suspect this is not actually working yet. Tests currently just ensure it does not crash; not that the entire output of the pipeline looks as expected.

3. Zero-shot Inference

Zero-shot inference consists of two steps:

  1. Given a task cohort and a pre-trained model, for each sample in the task cohort, generate future trajectories from those inputs forward with the pre-trained model and save them to disk in a pseudo-MEDS format.
  2. Resolve these generated trajectories into concrete, probabilistic predictions for the task cohort.

3.1 Generate Trajectories for a task spec.

You can directly generate trajectories using the MEICAR_generate_trajectories command. This requires a few more configuration parameters than the pre-training step, so let's go through those:

  1. You need to specify the task labels directory in the datamodule.config.task_labels_dir parameter.
  2. You need to specify the model initialization directory in the model_initialization_dir parameter. This is the output directory of the pre-train step.
  3. You need to specify how you want to trade-off between allowed input context size and the maximum possible generated trajectory length. The former allows you to use more of the patient's record, but the latter controls how far into the future you can predict. This can be configured with one of three parameters in the seq_lens part of the config. If you set:
    • seq_lens.generation_context_size, that will be the maximum length of the input context, and the remaining length of the pretrained model's maximum sequence length will be used for generation.
    • seq_lens.max_generated_trajectory_len, that will be the maximum length of the generated trajectory, and the remaining length of the pretrained model's maximum sequence length will be used for the input.
    • seq_lens.frac_seq_len_as_context, that will be the fraction of the pretrained model's maximum sequence length that will be used for the input context, and the remaining length will be used for generation. This is set by default to 0.25, which means that 25% of the maximum sequence length will be used for the input context, and 75% will be used for generation. If you wish to use another mode on the command line, be sure to set this to null to disable it.
  4. Lastly, you need to specify how many trajectories per task sample you wish to generate, and for which splits you wish to generate samples. You can do this via the inference.generate_for_splits and inference.N_trajectories_per_task_sample parameters. The former is a list of splits to generate and the latter is the number of trajectories to generate per task sample. The default is to generate 20 trajectories for each task sample in the tuning and held out splits.

After these are set, you can run the following command to generate trajectories for a task cohort:

MEICAR_generate_trajectories \
    output_dir="$GENERATED_TRAJECTORIES_DIR" \
    model_initialization_dir="$PRETRAINED_MODEL_DIR" \
    datamodule.config.tensorized_cohort_dir="$FINAL_DATA_DIR" \
    datamodule.config.task_labels_dir="$TASK_ROOT_DIR/$TASK_NAME" \
    datamodule.batch_size=32

This will generate trajectories for the task cohort and save them in the format: $GENERATED_TRAJECTORIES_DIR/$SPLIT/$SAMPLE.parquet.

See the documentation for format_trajectories for more details on the format of the generated trajectories.

3.2 Resolve Trajectories into Predictions.

Not yet implemented.

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

meds_eic_ar-0.0.1.tar.gz (40.2 kB view details)

Uploaded Source

Built Distribution

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

meds_eic_ar-0.0.1-py3-none-any.whl (42.8 kB view details)

Uploaded Python 3

File details

Details for the file meds_eic_ar-0.0.1.tar.gz.

File metadata

  • Download URL: meds_eic_ar-0.0.1.tar.gz
  • Upload date:
  • Size: 40.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for meds_eic_ar-0.0.1.tar.gz
Algorithm Hash digest
SHA256 c752c7ed7cd304984239270a01151f904fde1f05360985978300f3ef7191ce59
MD5 327a32ac8a2ed222b46fba6b65077331
BLAKE2b-256 f7f0ba04c9dad9945351e90c18e687732400daaa5083ac6c0006958695c314c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for meds_eic_ar-0.0.1.tar.gz:

Publisher: python-build.yaml on mmcdermott/MEDS_EIC_AR

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file meds_eic_ar-0.0.1-py3-none-any.whl.

File metadata

  • Download URL: meds_eic_ar-0.0.1-py3-none-any.whl
  • Upload date:
  • Size: 42.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for meds_eic_ar-0.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 106eea3fee8af977a1583440cb230f1c4bc7b920b3e9863ea768ea28e8ebc2c2
MD5 e271bfe3e7299977fc0b1e541c963095
BLAKE2b-256 0b696e7ee16a4be2cf1ed4d11ef7cfe225ab0072c11769a0c0cb0dc443551ffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for meds_eic_ar-0.0.1-py3-none-any.whl:

Publisher: python-build.yaml on mmcdermott/MEDS_EIC_AR

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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