python临床数据_原始MRI测量和临床MRI图像的大规模数据集

fastMRI

Accelerating Magnetic Resonance Imaging (MRI) by acquiring fewer measurements has the potential to reduce medical costs, minimize stress to patients and make MR imaging possible in applications where it is currently prohibitively slow or expensive.

fastMRI is collaborative research project from Facebook AI Research (FAIR) and NYU Langone Health to investigate the use of AI to make MRI scans faster. NYU Langone Health has released fully anonymized Knee MRI datasets that can be downloaded from the fastMRI dataset page.

This repository contains convenient PyTorch data loaders, subsampling functions, evaluation metrics, and reference implementations of simple baseline methods.

Citing

If you use the fastMRI data or this code in your research, please consider citing the fastMRI dataset paper:

@inproceedings{zbontar2018fastMRI,

title={fastMRI: An Open Dataset and Benchmarks for Accelerated MRI},

author={Jure Zbontar and Florian Knoll and Anuroop Sriram et. al.},

journal = {ArXiv e-prints},

archivePrefix = "arXiv",

eprint = {1811.08839},

year={2018}

}

Dependencies

We have tested this code using:

Ubuntu 18.04

Python 3.6

CUDA 9.0

CUDNN 7.0

You can find the full list of Python packages needed to run the code in the requirements.txt file. These can be installed using:

pip install -r requirements.txt

Directory Structure & Usage

common: Contains several utility functions and classes that can be used to create subsampling masks, evaluate results and create submission files.

data: Contains PyTorch data loaders for loading the fastMRI data and PyTorch data transforms useful for working with MRI data. See data/README.md for more information about using the data loaders.

models: Contains the baseline models.

Testing

Run pytest.

Submitting to Leaderboard

Run your model on the provided test data and create a zip file containing your predictions. Upload this to any publicly accessible cloud storage (e.g. Amazon S3, Dropbox etc) and then create a JSON file with your information.

The common/utils.py file has some convenience functions to help with this:

save_reconstructions function saves the data in the correct format.

create_submission_file creates a JSON file for submission.

Submit the JSON file on the EvalAI page.

License

fastMRI is MIT licensed, as found in the LICENSE file.

你可能感兴趣的:(python临床数据)