RANO FL Study

This is the documentation for the Federated Learning Study conducted by RANO in collaboration with MLCommons.

Home
Application Setup
Process the Data
Run the Application
Extras
ITCR Connectivity

Processing the Data for FeTS

Data Requirements

Data Arrangement

Each subject’s DICOM (or NIfTI) image is to be put in a separate folder:

Input_Data
│
└───Patient_001
│   │
│   └───Timepoint_001
│   │   │
│   │   └───T1
│   │   │   │ image_001.dcm
│   │   │   │ image_002.dcm
│   │   │   │ ...
│   │   └───T1GD
│   │   │   │ image_001.dcm
│   │   │   │ image_002.dcm
│   │   │   │ ...
│   │   └───T2
│   │   │   │ image_001.dcm
│   │   │   │ image_002.dcm
│   │   │   │ ...
│   │   └───T2FLAIR
│   │   │   │ image_001.dcm
│   │   │   │ image_002.dcm
│   │   │   │ .....
│   │
│   └───Timepoint_002
│   │   │
│   │   └───T1
│   │   │   │ image_001.dcm
│   │   │   │ image_002.dcm
│   │   │   │ ...
│   │   └───T1GD
│   │   │   │ image_001.dcm
│   │   │   │ image_002.dcm
│   │   │   │ ...
│   │   └───T2
│   │   │   │ image_001.dcm
│   │   │   │ image_002.dcm
│   │   │   │ ...
│   │   └───T2FLAIR
│   │   │   │ image_001.dcm
│   │   │   │ image_002.dcm
│   │   │   │ .....
│   │
│   └───Timepoint_N
│   
└───Patient_JohnDoe
│   │
│   └───Timepoint_001
│   │ ...   
│   │
│   └───Timepoint_002
│   │ ...   
│   
│ ...   
│   
└───Patient_SmithJoe
│   │ ...

Back To Top ↑

Next: Run Application