Skip to content

A Textbook Remedy for Domain Shifts Knowledge Priors for Medical Image Analysis

License

Notifications You must be signed in to change notification settings

YueYANG1996/KnoBo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

A Textbook Remedy for Domain Shifts
Knowledge Priors for Medical Image Analysis

Table of Contents

  1. CLIP Models
  2. Installation
  3. Quick Start
  4. Directories
  5. Extract Features
  6. Generate Bottlenecks from Medical Documents
  7. Train Grounding Functions
  8. Baselines

CLIP Models

We release the two CLIP models we trained for X-ray and Skin Lesion images on huggingface.

Installation

After cloning the repo, you can install the required dependencies and download the data by running the following commands:

git clone https://github.com/YueYANG1996/KnoBo.git
cd KnoBo
sh setup.sh

Quick Start

To get the results of KnoBo on X-ray datasets, you can run the following command:

python modules/cbm.py \
    --mode binary \
    --bottleneck PubMed \
    --number_of_features 150 \
    --add_prior True \
    --modality xray \
    --model_name whyxrayclip \

The output will be saved to ./data/results/. You can change the --modality to skin and --model_name to whylesionclip to get the results on Skin Lesion datasets.

Directories

  • data/ : Contains the data for all experiments.

    • data/bottlenecks/ : Contains the concept bottleneck created using medical documents.
    • data/datasets/ : Contains the splits for all datasets. You may need to download the images of each dataset from their original sources. Please refer to the DATASETS.md for more details.
    • data/features/ : Contains the features extracted from different models.
    • data/grounding_functions/ : Contains the grounding functions for each concept in the bottleneck.
    • data/results/ : Contains the results of all experiments.
  • modules/ : Contains the scripts for all experiments.

    • modules/cbm.py : Contains the script for the running linear-based models, including KnoBo, linear probing, and PCBM.
    • modules/extract_features.py : Contains the script for extracting image features using different models.
    • modules/train_grounding.py : Contains the script for training the grounding functions for each concept in the bottleneck.
    • modules/end2end.py : Contains the script for training the end-to-end model, including ViT and DenseNet.
    • modules/LSL.py : Contains the script for fine-tuning CLIP with knowledge (Language-shaped Learning).
    • modules/models.py : Contains the models used in the experiments.
    • modules/utils.py : Contains the utility functions.

Extract Features

After running the setup.sh, you should have the features extracted from the two CLIP models we trained in the data/features/ directory. If you want to extract features using other models, you can run the following command:

python modules/extract_features.py \
    --dataset_name <NAME OF THE DATASET> \
    --model_name <NAME OF THE MODEL> \
    --image_dir <PATH TO THE IMAGE DIRECTORY> \

The supported models are listed here. We provide a bash script extract_features.sh to extract features for all datasets using the two CLIP models we trained.

Generate Bottlenecks from Medical Documents

We build the retrieval-based concept bottleneck generation pipeline based on MedRAG. You need to first clone our forked version and set up the environment by running the following commands:

git clone https://github.com/YueYANG1996/MedRAG.git
cd MedRAG
sh setup.sh

It may take a while since it needs to download the 5M PubMed documents (29.5 GB). After setting up the environment, you can test the RAG system by running the test.py.

To generate the concept bottleneck from medical documents, you can run the following command:

python concept_generation.py \
    --modality <xray or skin> \
    --corpus_name <NAME OF THE CORPUS> \
    --number_of_concepts <NUMBER OF CONCEPTS> \
    --openai_key <OPENAI API KEY> \

For the --corpus_name, you can choose from PubMed_all (this is our version of PubMed with all paragraphs), PubMed (this is MedRAG's orginal version which only has abstracts), Textbooks, StatPearls and Wikipedia. The generated bottleneck will be saved to ./data/bottlenecks/<modality>_<corpus>_<number_of_concepts>.

Annotate concepts: You can annotate clinical reports for each concept in the bottleneck by running the following command:

python annotate_question.py \
    --annotator <t5 of gpt4> \
    --modality <xray or skin> \
    --bottleneck <NAME OF THE BOTTLENECK> \
    --number_of_reports <NUMBER OF REPORTS TO ANNOTATE> \
    --openai_key <OPENAI API> \

The default LLM for annotation if Flan-T5-XXL, you can change it to GPT-4 by setting --annotator gpt4 (warning: this may cost a lot of money). The default number of reports to annotate is 1000. The annotated reports will be saved to ./data/concept_annotation_<modality>/annotations_<annotator>.

Train Grounding Functions

To train the grounding functions for each concept in the bottleneck, you can run the following command:

python modules/train_grounding.py \
    --modality <xray or skin> \
    --bottleneck <NAME OF THE BOTTLENECK> \

Each grounding function is a binary classifier that predicts whether the concept is present in the image. The output will be saved to ./data/grounding_functions/<modality>/<concept>/.

Baselines

  • Linear Probing: python modules/cbm.py --mode linear_probe --modality <xray or skin> --model_name <vision backbone>.

  • PCBM-h: python modules/cbm.py --mode pcbm --bottleneck PubMed --number_of_features 150 --modality <xray or skin> --model_name <vision backbone>.

  • End-to-End: python modules/end2end.py --modality <xray or skin> --model_name <vit or densenet>.

  • LSL: You need to first fine-tune the CLIP model with knowledge using the following command:

    python modules/LSL.py \
        --modality <xray or skin> \
        --clip_model_name <base model, e.g., whyxrayclip> \
        --bottleneck <NAME OF THE BOTTLENECK> \
        --image_dir <PATH TO THE IMAGE DIRECTORY> \

    Then, extract the features using the fine-tuned CLIP model and get the final results same as linear probing: python modules/cbm.py --mode linear_probe --modality <xray or skin> --model_name <fine-tuned vision backbone>. We provide the models we fine-tuned on PubMed in the data/model_weights/ directory.

Citation

Please cite our paper if you find our work useful!

@article{yang2024textbook,
      title={A Textbook Remedy for Domain Shifts: Knowledge Priors for Medical Image Analysis}, 
      author={Yue Yang and Mona Gandhi and Yufei Wang and Yifan Wu and Michael S. Yao and Chris Callison-Burch and James C. Gee and Mark Yatskar},
      journal={arXiv preprint arXiv:2405.14839},
      year={2024}
}

Releases

No releases published

Packages

No packages published