Skip to content

kbressem/gpt4-structured-reporting

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Radiology Report Structuring with GPT-4

This repository demonstrates how radiology reports can be structured using OpenAI's GPT-4. It includes example notebooks, a demo Flask app, and sample reports. The main goal is to demonstrate how large language models can be stratecially propmpted to perform complex tasks in information extraction and structuring of complex text data.

Repository Structure:

.
├── README.md
├── app.py                   # Flask app. Start with python app.py
├── gpt.py                   # Wrapper for GPT-4 API
├── static                   # Static files for demo app
│   ├── css
│   │   └── styles.css
│   ├── img
│   │   ├── examle.png
│   │   └── spinner.gif
│   ├── js
│   │   └── main.js
│   └── report_templates.json  # JSON templates for structured reports
├── templates
│   ├── index.html
│   └── reports.html           # Structured reports as HTML files
├── examples
│   └── structure_mimic.ipynb  # An example usecase on how GPT could structure the MIMIC dataset
├── reports                     
│   ├── reports.json           # Unstructured reports
│   ├── structured_reports.json  # Source file for reports.html
│   └── xray_reports.json      # Structured chest x-ray reports
└── scripts
    ├── json-to-html-table.py
    ├── report-structuring.py  # Convert reports to structured format with GPT-4
    └── xray-clf.py

Getting Started:

To run the demo app locally, follow these steps:

Clone the repository:

git clone https://github.com/yourusername/radiology-report-structuring.git
cd radiology-report-structuring

install the the openai python package, to be able to assess the OpenAI api. You will need an API-Key to be able to use the OpenAI api.

Demo

You can access the app here

image

Run the Flask app locally:

Given you have installed all dependecies, you can run the demo application with

export FLASK_APP=app.py
export FLASK_ENV=development
flask run

Alternatively the demo can also be run with Docker:

docker build -t gpt-structured-reporting .
docker run -p 5000:5000 gpt-structured-reporting

Open your browser and visit http://127.0.0.1:5000 to access the demo app.

Navigate to the demo app and upload a unstructured report (use sample_reports.json for a quick start). GPT-4 will chose the most appropriate template and return a structured report as JSON. This may take a while and you need to provide your API key for this. For inspiration you can view the structured reports in the table format on the reports.html page.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages