Skip to content

3hiuwoo/TFP

Repository files navigation

TFP: Patient Discriminative Contrastive Learning Across Time and Frequency

Requirements

Run the following to prepare all required modules.

pip install -r requirement.txt

# If you want to use conda
# conda install --file requirement.txt

Datasets

Download

  • PTB-XL: Download the zip file from here and extract the data.

  • Chapman: Download the ECGDataDenoised.zip and Diagnostics.xlsx files from here and extract the data from the .zip file.

  • PTB: Download the zip file from here and extract the data.

  • CPSC2018: Download the zip file from here and extract the data.

Preprocessing

Run jupyter notebooks corresponding to each dataset from this folder to preprocess the raw data, remember to modify the path in notebooks to load your downloaded dataset and to save processed dataset.

Training data organization

All processed data should be organized as below(all notebooks produce the data in this format automatically):

- [destination path specified in notebook]:
  - ptbxl:
    - features:
      - feature_00001.npy
      ...
    - labels:
      - labels.npy
  - other dataset
  ...

The "destination path specified in notebook" will be used by all scripts to load data.

Pre-training

To pre-train with the same setting as in the paper, just run:

python train.py --root [folder containing all datasets]\
                --logdir [folder to save weights and training loss]\
                --schedule warmup\
                --neighbor\
                --use_id

If you want to try different settings, run the following for details:

python train.py -h

Fine-tuning

To fine-tune and test following our paper, run:

python finetune.py --root [folder containing all datasets]\
                   --logdir [folder to save fine-tuned weights and logs]\
                   --pretrain [path of the pre-trained weight file]

To fine-tune with any amount of datasets and any combinations of fractions with other settings, run the following for details:

python finetune.py -h

Reference

We incorporate COMET"s Code to conduct aligned experiments.

TODO

  • Add annotation and README to CLOCS and PCLR.
  • update this README.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published