lhlm1994 / Medical_Report_Generation

Automatic report generation from medical images

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Medical Image Processing for Automatic Report Generation

Overview

This repository contains PyTorch implementations from this repository, based on Show and Tell: A Neural Image Caption Generator and Show, Attend and Tell: Neural Image Caption Generation with Visual Attention. I modified part of its implementation to work with Spanish datasets and I made some convinient changes for this task.

Installation

The code was written for Python 3.6 or higher, and it has been tested with PyTorch 0.4.1. Training is only available with GPU. To get started, try to clone the repository

git clone https://github.com/lggaray/Medical_Report_Generation
cd image-captioning

Preprocessing

First, you need to download images and captions from the Openi website. The data directory should have the following structure:

.
├── annotations
│   ├── reports_train.csv
│   ├── reports_val.csv
│   └── reports_test.csv
└── images
    ├── train
    │   └── CR9_IM-2407-1001.png
    ├── val
    │   └── CRX999_IM-2458-1001.png
    └── test
        └── CXR995_IM-2478-1001.png

Once all the annotations and images are downloaded to, say, DATA_DIR, you can run the following command to map caption words into indices in a dictionary and extract image features from a pretrained VGG19 network:

python preprocess.py --data $DATA_DIR --dest-dir $DEST_DIR

Note that the resulting directory DEST_DIR will be quite large. Experiments with HDF5 shows that there's a significant slowdown due to concurrent access with multiple data workers (see this discussion and this note). Hence, the preprocessing script saves CNN features of different images into separate files.

Training

To get started with training a model on SQuAD, you might find the following commands helpful:

python train.py --arch show_attend_tell --data $DEST_DIR --save-dir checkpoints/show_attend_tell --log-file logs/show_attend_tell.log

Although the implementations doesn't support fine-tuning the CNN network, the feature can be added quite easily and probably yields better performance.

Prediction

When the training is done, you can make predictions with the test dataset and compute BLEU scores:

python generate.py --checkpoint-path checkpoints/show_attend_tell/checkpoint_best.pt > /tmp/show_attend_tell.out
grep ^H /tmp/show_attend_tell.out | cut -f2- | sed -r 's/'$(echo -e "\033")'\[[0-9]{1,2}(;([0-9]{1,2})?)?[mK]//g' > /tmp/show_attend_tell.sys
grep ^T /tmp/show_attend_tell.out | cut -f2- | sed -r 's/'$(echo -e "\033")'\[[0-9]{1,2}(;([0-9]{1,2})?)?[mK]//g' > /tmp/show_attend_tell.ref
python score.py --reference /tmp/show_attend_tell.ref --system /tmp/show_attend_tell.sys

Visualization

To display generated captions alongside their corresponding images, run the following command:

python visualize.py --checkpoint-path checkpoints/show_attend_tell/checkpoint_best.pt --dataset-path $DATA_DIR

About

Automatic report generation from medical images


Languages

Language:Python 100.0%