Upload 26 files
Browse files- .gitattributes +6 -0
- README.md +71 -0
- code/data_preprocessing/dcm2nifti.py +83 -0
- data/.DS_Store +0 -0
- data/generate_data/test.json +3 -0
- data/generate_data/test_balanced.json +3 -0
- data/generate_data/train.json +3 -0
- data/generate_data/val.json +3 -0
- data/labels/manual_annotated_kMRI_18M.csv +7 -0
- data/labels/taxonomymatch_kMRI_FNIH_SQ_MOAKS_BICL00.csv +0 -0
- data/labels/taxonomymatch_kMRI_FNIH_SQ_MOAKS_BICL01.csv +0 -0
- data/labels/taxonomymatch_kMRI_FNIH_SQ_MOAKS_BICL03.csv +0 -0
- data/labels/taxonomymatch_kMRI_SQ_MOAKS_BICL00.csv +0 -0
- data/labels/taxonomymatch_kMRI_SQ_MOAKS_BICL01.csv +0 -0
- data/labels/taxonomymatch_kMRI_SQ_MOAKS_BICL03.csv +0 -0
- data/labels/taxonomymatch_kMRI_SQ_MOAKS_BICL06.csv +0 -0
- data/masks_aa +3 -0
- data/masks_ab +3 -0
- data/question_files/cot_question_mapping.json +0 -0
- data/question_files/grade_dict.json +241 -0
- data/question_files/labels.json +67 -0
- data/question_files/question_subregion_mapping.json +71 -0
- data/question_files/questions.json +71 -0
- data/split_files/all_studies.csv +0 -0
- data/split_files/test_split.csv +0 -0
- data/split_files/train_split.csv +0 -0
- data/split_files/val_split.csv +0 -0
.gitattributes
CHANGED
|
@@ -57,3 +57,9 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 57 |
# Video files - compressed
|
| 58 |
*.mp4 filter=lfs diff=lfs merge=lfs -text
|
| 59 |
*.webm filter=lfs diff=lfs merge=lfs -text
|
| 60 |
+
data/generate_data/test_balanced.json filter=lfs diff=lfs merge=lfs -text
|
| 61 |
+
data/generate_data/test.json filter=lfs diff=lfs merge=lfs -text
|
| 62 |
+
data/generate_data/train.json filter=lfs diff=lfs merge=lfs -text
|
| 63 |
+
data/generate_data/val.json filter=lfs diff=lfs merge=lfs -text
|
| 64 |
+
data/masks_aa filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
data/masks_ab filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 3D ReasonKnee: 3D Grouned Reasoning Dataset
|
| 2 |
+
|
| 3 |
+
This repository contains code for preprocessing, generating, and analyzing 3D knee MRI data for osteoarthritis assessment.
|
| 4 |
+
|
| 5 |
+
## Repository Structure
|
| 6 |
+
|
| 7 |
+
### Data Organization
|
| 8 |
+
|
| 9 |
+
- `/data/`
|
| 10 |
+
- `/OAI/` - Raw DICOM files from OAI dataset
|
| 11 |
+
- `/labels/` - Contains taxonomymatch csv files with MOAKS scores
|
| 12 |
+
- `/images/` - Contains the preprocessed images
|
| 13 |
+
- `/masks.zip` - Contains the segmentation masks of all subregions and lesions given by nnU-Net, please use `cat masks_aa masks_ab > masks.zip` and `unzip masks.zip`
|
| 14 |
+
- `/split_files/` - Contains patient_id,time,study_folder,series_folder,knee_side,path,image_filepath,label_filepath infomation of all studies with random train/val/test split files
|
| 15 |
+
- `/question_files/` - Contains mapping files for subregions and grades
|
| 16 |
+
- `questions.json` - Queries created based on the MOAKS framework
|
| 17 |
+
- `cot_question_mapping.json` - Expert Chain of Thought of each question
|
| 18 |
+
- `labels.json` - label subregion/lesion mapping of the masks
|
| 19 |
+
- `grade_dict.json` - Example structure of all possible scores
|
| 20 |
+
- `question_subregion_mapping.json` - Corresponding subregion of each question
|
| 21 |
+
- `/generate_data/` - Contains final generated data with image paths (image), prompts (prompt), chain-of-thought reasoning (cot), and final diagnoses including bounding boxes of subregions and grade assessments (final_diagnosis).
|
| 22 |
+
|
| 23 |
+
### Code Organization
|
| 24 |
+
|
| 25 |
+
- `/code/`
|
| 26 |
+
- `/data_preprocessing/` - Scripts for initial data preparation of raw DICOM files
|
| 27 |
+
- `dcm2nifti.py` - Converts DICOM files to NIfTI format and save to `./data/images/`
|
| 28 |
+
|
| 29 |
+
## How to Use
|
| 30 |
+
|
| 31 |
+
1. **OAI Download**: Please download the original raw DICOM files from https://oai.ucsf.edu/oai-osteoarthritis-initiative
|
| 32 |
+
2. **DICOM to NIfTI Conversion**: Use `/code/data_preprocessing/dcm2nifti.py` to convert DICOM files to NIfTI format
|
| 33 |
+
3. **Data Example**: data file can be found in `/generate_data/`
|
| 34 |
+
|
| 35 |
+
## Example Data Format
|
| 36 |
+
|
| 37 |
+
Below is an example of the data format in our generated data files:
|
| 38 |
+
```json
|
| 39 |
+
{
|
| 40 |
+
"image": "/data/images/9021195/48M/20090518_12801512_1.nii.gz",
|
| 41 |
+
"prompt": "### Question:\nIn this DESS MRI, can you diagnose cartilage lesions in the femur medial central subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the femur medial central subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"final_diagnosis\": {\"femur medial central cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}\n### Answer (think step by step):\n",
|
| 42 |
+
"answer": "The cartilage looks gray in the DESS image. It covers the articular surfaces of the bones. I need to see whether the patient's cartilage has a smooth surface, evenly distributed thickness. If there is an abrupt thinning of cartilage, disruption of contour, it implies a cartilage lesion. There is no abrupt change in cartilage contour or any absence of cartilage in this subregion.\n Final diagnosis: {\"bounding_box\": [83, 141, 117, 261, 154, 258], \"final_diagnosis\": {\"femur medial central cartilage lesion\": {\"size\": 0, \"depth\": 0}}}",
|
| 43 |
+
"cot": "The cartilage looks gray in the DESS image. It covers the articular surfaces of the bones. I need to see whether the patient's cartilage has a smooth surface, evenly distributed thickness. If there is an abrupt thinning of cartilage, disruption of contour, it implies a cartilage lesion. There is no abrupt change in cartilage contour or any absence of cartilage in this subregion.",
|
| 44 |
+
"final_diagnosis": {
|
| 45 |
+
"bounding_box": [
|
| 46 |
+
83,
|
| 47 |
+
141,
|
| 48 |
+
117,
|
| 49 |
+
261,
|
| 50 |
+
154,
|
| 51 |
+
258
|
| 52 |
+
],
|
| 53 |
+
"final_diagnosis": {
|
| 54 |
+
"femur medial central cartilage lesion": {
|
| 55 |
+
"size": 0,
|
| 56 |
+
"depth": 0
|
| 57 |
+
}
|
| 58 |
+
}
|
| 59 |
+
}
|
| 60 |
+
}
|
| 61 |
+
```
|
| 62 |
+
|
| 63 |
+
### License and Access Restrictions
|
| 64 |
+
The Osteoarthritis Initiative (OAI) is a multi-center, ten-year observational study of men and women, sponsored by the National Institutes of Health (part of the Department of Health and Human Services). To obtain access to OAI data you will need an NDA user account. Account can be requested directly from the NIMH Data Archive (NDA) website https://nda.nih.gov/oai/query-download.
|
| 65 |
+
|
| 66 |
+
Our 3D-GROI dataset is released under the [Creative Commons Attribution 4.0 International (CC BY 4.0)](https://creativecommons.org/licenses/by/4.0/) license. This allows for:
|
| 67 |
+
- Sharing and adaptation of the material
|
| 68 |
+
- Commercial use
|
| 69 |
+
- With the requirement to provide appropriate attribution
|
| 70 |
+
|
| 71 |
+
|
code/data_preprocessing/dcm2nifti.py
ADDED
|
@@ -0,0 +1,83 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import os
|
| 2 |
+
import pydicom
|
| 3 |
+
import nibabel as nib
|
| 4 |
+
import pandas as pd
|
| 5 |
+
import dicom2nifti
|
| 6 |
+
from tqdm import tqdm
|
| 7 |
+
import concurrent.futures
|
| 8 |
+
|
| 9 |
+
def get_knee_side(dicom_path):
|
| 10 |
+
"""
|
| 11 |
+
Reads DICOM metadata and extracts the knee side from SeriesDescription.
|
| 12 |
+
Returns:
|
| 13 |
+
int: 1 for RIGHT, 2 for LEFT (based on SeriesDescription), or None on error.
|
| 14 |
+
"""
|
| 15 |
+
try:
|
| 16 |
+
ds = pydicom.dcmread(dicom_path, stop_before_pixels=True)
|
| 17 |
+
series_desc = getattr(ds, "SeriesDescription", "").upper()
|
| 18 |
+
print(series_desc)
|
| 19 |
+
return 'RIGHT' if series_desc == "SAG_3D_DESS_RIGHT" else 'LEFT'
|
| 20 |
+
except Exception as e:
|
| 21 |
+
print(f"Error reading DICOM file {dicom_path}: {e}")
|
| 22 |
+
return None
|
| 23 |
+
|
| 24 |
+
def convert_dcm_to_nifti(dicom_path, save_image_filepath):
|
| 25 |
+
"""
|
| 26 |
+
Converts DICOM files to NIfTI format.
|
| 27 |
+
Args:
|
| 28 |
+
dicom_path (str): Path to the DICOM file.
|
| 29 |
+
save_image_filepath (str): Path to save the NIfTI file.
|
| 30 |
+
"""
|
| 31 |
+
dicom2nifti.dicom_series_to_nifti(dicom_path, save_image_filepath, reorient_nifti=True)
|
| 32 |
+
print(f"Saved {save_image_filepath}")
|
| 33 |
+
return save_image_filepath
|
| 34 |
+
|
| 35 |
+
def process_row(row, save_image_folder):
|
| 36 |
+
"""
|
| 37 |
+
Process a single row from the DataFrame.
|
| 38 |
+
"""
|
| 39 |
+
patient_id = row['patient_id']
|
| 40 |
+
time = row['time']
|
| 41 |
+
study_folder = row['study_folder']
|
| 42 |
+
series_folder = row['series_folder']
|
| 43 |
+
knee_side = row['knee_side']
|
| 44 |
+
path = row['path']
|
| 45 |
+
|
| 46 |
+
save_image_filepath = os.path.join(save_image_folder, str(patient_id), str(time),
|
| 47 |
+
f'{study_folder}_{series_folder}_{knee_side}.nii.gz')
|
| 48 |
+
|
| 49 |
+
if os.path.exists(save_image_filepath):
|
| 50 |
+
print(f"Skipping {save_image_filepath} because it already exists")
|
| 51 |
+
else:
|
| 52 |
+
os.makedirs(os.path.dirname(save_image_filepath), exist_ok=True)
|
| 53 |
+
convert_dcm_to_nifti(path, save_image_filepath)
|
| 54 |
+
|
| 55 |
+
row_copy = row.copy()
|
| 56 |
+
row_copy['save_image_filepath'] = save_image_filepath
|
| 57 |
+
return row_copy
|
| 58 |
+
|
| 59 |
+
if __name__ == "__main__":
|
| 60 |
+
save_image_folder = '/data/images'
|
| 61 |
+
df = pd.read_csv('/data/all_studies.csv')
|
| 62 |
+
|
| 63 |
+
# Define number of workers (threads)
|
| 64 |
+
max_workers = 8 # You can adjust this based on your CPU cores
|
| 65 |
+
save_rows = []
|
| 66 |
+
# Process in batches if memory is a concern
|
| 67 |
+
batch_size = 100
|
| 68 |
+
for i in range(0, len(df), batch_size):
|
| 69 |
+
batch_df = df.iloc[i:i+batch_size]
|
| 70 |
+
|
| 71 |
+
with concurrent.futures.ThreadPoolExecutor(max_workers=max_workers) as executor:
|
| 72 |
+
futures = [executor.submit(process_row, row, save_image_folder)
|
| 73 |
+
for _, row in batch_df.iterrows()]
|
| 74 |
+
|
| 75 |
+
for future in tqdm(concurrent.futures.as_completed(futures),
|
| 76 |
+
total=len(futures),
|
| 77 |
+
desc=f"Batch {i//batch_size+1}/{(len(df)+batch_size-1)//batch_size}"):
|
| 78 |
+
try:
|
| 79 |
+
result = future.result()
|
| 80 |
+
save_rows.append(result)
|
| 81 |
+
except Exception as e:
|
| 82 |
+
print(f"Processing error: {e}")
|
| 83 |
+
|
data/.DS_Store
ADDED
|
Binary file (18.4 kB). View file
|
|
|
data/generate_data/test.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:95bf3620082d849ba8b17cff3c9e22c9652f3a3d3d92e479a004740b2afaf7de
|
| 3 |
+
size 171712528
|
data/generate_data/test_balanced.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9539a4e98e207965f3bb2dbd03d891ae2363abfbfb25a0ba61c2e567f2a97e0f
|
| 3 |
+
size 40626553
|
data/generate_data/train.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3c9141aba4c2c48288f03c2ead8e5c11afae507bc32adeeb6fdf21237f56e5ae
|
| 3 |
+
size 837738466
|
data/generate_data/val.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:50668bdc31419fe1084cce07fea37554a5f874798b94c63d54f3f291a0df52ca
|
| 3 |
+
size 116376956
|
data/labels/manual_annotated_kMRI_18M.csv
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
ID,SIDE,VERSION,,READPRJ,V00MCMPM,V00MCMPM.1,V00MCMPL,V00MCMPL.1,V00MCMFMA,V00MCMFMA.1,V00MCMFLA,V00MCMFLA.1,V00MCMFMP,V00MCMFMP.1,V00MCMFLP,V00MCMFLP.1,V00MCMFMC,V00MCMFMC.1,V00MCMFLC,V00MCMFLC.1,V00MCMTMA,V00MCMTMA.1,V00MCMTLA,V00MCMTLA.1,V00MCMTMC,V00MCMTMC.1,V00MCMTLC,V00MCMTLC.1,V00MCMTMP,V00MCMTMP.1,V00MCMTLP,V00MCMTLP.1,V00MBMSFMA,V00MBMPFMA,V00MBMNFMA,V00MBMSFLA,V00MBMPFLA,V00MBMNFLA,V00MBMSFMC,V00MBMPFMC,V00MBMNFMC,V00MBMSFLC,V00MBMPFLC,V00MBMNFLC,V00MBMSFMP,V00MBMPFMP,V00MBMNFMP,V00MBMSFLP,V00MBMPFLP,V00MBMNFLP,V00MBMSSS,V00MBMPSS,V00MBMNSS,V00MBMSTMA,V00MBMPTMA,V00MBMNTMA,V00MBMSTLA,V00MBMPTLA,V00MBMNTLA,V00MBMSTMC,V00MBMPTMC,V00MBMNTMC,V00MBMSTLC,V00MBMPTLC,V00MBMNTLC,V00MBMSTMP,V00MBMPTMP,V00MBMNTMP,V00MBMSTLP,V00MBMPTLP,V00MBMNTLP,V00MBMSPM,V00MBMPPM,V00MBMNPM,V00MBMSPL,V00MBMPPL,V00MBMNPL,V00MMTMA,V00MMTLA,V00MMTMB,V00MMTLB,V00MMTMP,V00MMTLP,V00MMHMA,V00MMXMM,V00MMXMA,V00MMXLA,V00MMXLL,V00MMRTM,V00MOSPS,V00MOSPI,V00MOSPM,V00MOSPL,V00MOSFMA,V00MOSFLA,V00MOSFMP,V00MOSFLP,V00MOSFMC,V00MOSFLC,V00MOSTM,V00MOSTL,V00MACLTR,V00MACLBML+V00MGCACL,V00MACLRP,V00MPCLTR,V00MPCLBML+V00MGCPCL,V00MPTSIG,V00MGCTIB+V00MGCSM+V00MGSST+V00MGCOTH,V00MANSBUR,V00MIPBUR,V00MPPBUR,V00MSYIC,V00MEFFWK,V00MITBSIG,V00MPOPCYS,,,
|
| 2 |
+
9007827,1,,999,0,0,0,0,2,2,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,0,0,0,0,0,0,0,3,1,1,1,1,0,0,0,1,1,2,1,0,1,0,0,0,0,0,0,0,0,1,0,0,0
|
| 3 |
+
9016304,1,,999,0,0,0,0,2,2,0,0,0,0,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,0,3,1,1,1,1,0,0,0,1,1,2,1,0,0,0,0,0,0,0,0,0,0,1,3,0,0
|
| 4 |
+
9028786,1,,999,0,0,0,0,2,2,0,0,0,0,2,2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,0,1,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,3,0,0
|
| 5 |
+
9021791,1,,999,0,0,0,0,2,2,0,0,0,0,2,2,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,0,2,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,0,0,0
|
| 6 |
+
9019287,1,,999,0,0,0,0,1,3,0,0,0,0,2,2,1,1,0,0,1,1,0,0,0,0,0,0,0,0,0,0,1,1,1,0,0,0,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,2,1,0,0,0,0,1,0,0,0,0,0,0,0,2,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0
|
| 7 |
+
9000798,1,,999,0,0,0,0,1,3,0,0,0,0,2,2,2,2,0,0,1,2,0,0,2,2,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,2,1,1,1,1,0,0,0,0,3,0,0,0,0,0,0,0,2,1,1,1,1,0,0,0,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,2,0,0
|
data/labels/taxonomymatch_kMRI_FNIH_SQ_MOAKS_BICL00.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/labels/taxonomymatch_kMRI_FNIH_SQ_MOAKS_BICL01.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/labels/taxonomymatch_kMRI_FNIH_SQ_MOAKS_BICL03.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/labels/taxonomymatch_kMRI_SQ_MOAKS_BICL00.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/labels/taxonomymatch_kMRI_SQ_MOAKS_BICL01.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/labels/taxonomymatch_kMRI_SQ_MOAKS_BICL03.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/labels/taxonomymatch_kMRI_SQ_MOAKS_BICL06.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/masks_aa
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:970fd9b1da59b026acf925ae03f8b7a44b07361172fb02f0a733a7cb3bb052c4
|
| 3 |
+
size 2147483648
|
data/masks_ab
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f52c75690c585659fa66153c84ea63876866ffb1ba942523b54dc67cc3ac5580
|
| 3 |
+
size 873532299
|
data/question_files/cot_question_mapping.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/question_files/grade_dict.json
ADDED
|
@@ -0,0 +1,241 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"patella medial cartilage lesion":{
|
| 3 |
+
"size": 0,
|
| 4 |
+
"depth": 0
|
| 5 |
+
},
|
| 6 |
+
"patella lateral cartilage lesion":{
|
| 7 |
+
"size": 0,
|
| 8 |
+
"depth": 0
|
| 9 |
+
},
|
| 10 |
+
"femur medial trochlea cartilage lesion":{
|
| 11 |
+
"size": 0,
|
| 12 |
+
"depth": 0
|
| 13 |
+
},
|
| 14 |
+
"femur lateral trochlea cartilage lesion":{
|
| 15 |
+
"size": 0,
|
| 16 |
+
"depth": 0
|
| 17 |
+
},
|
| 18 |
+
"femur medial posterior cartilage lesion":{
|
| 19 |
+
"size": 0,
|
| 20 |
+
"depth": 0
|
| 21 |
+
},
|
| 22 |
+
"femur lateral posterior cartilage lesion":{
|
| 23 |
+
"size": 0,
|
| 24 |
+
"depth": 0
|
| 25 |
+
},
|
| 26 |
+
"femur medial central cartilage lesion":{
|
| 27 |
+
"size": 0,
|
| 28 |
+
"depth": 0
|
| 29 |
+
},
|
| 30 |
+
"femur lateral central cartilage lesion":{
|
| 31 |
+
"size": 0,
|
| 32 |
+
"depth": 0
|
| 33 |
+
},
|
| 34 |
+
"tibia medial anterior cartilage lesion":{
|
| 35 |
+
"size": 0,
|
| 36 |
+
"depth": 0
|
| 37 |
+
},
|
| 38 |
+
"tibia lateral anterior cartilage lesion":{
|
| 39 |
+
"size": 0,
|
| 40 |
+
"depth": 0
|
| 41 |
+
},
|
| 42 |
+
"tibia medial central cartilage lesion":{
|
| 43 |
+
"size": 0,
|
| 44 |
+
"depth": 0
|
| 45 |
+
},
|
| 46 |
+
"tibia lateral central cartilage lesion":{
|
| 47 |
+
"size": 0,
|
| 48 |
+
"depth": 0
|
| 49 |
+
},
|
| 50 |
+
"tibia medial posterior cartilage lesion":{
|
| 51 |
+
"size": 0,
|
| 52 |
+
"depth": 0
|
| 53 |
+
},
|
| 54 |
+
"tibia lateral posterior cartilage lesion":{
|
| 55 |
+
"size": 0,
|
| 56 |
+
"depth": 0
|
| 57 |
+
},
|
| 58 |
+
"femur medial trochlea BML":{
|
| 59 |
+
"Size of BML (including cyst)": 0,
|
| 60 |
+
"Number of BML within subregion": 0,
|
| 61 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 62 |
+
},
|
| 63 |
+
"femur lateral trochlea BML":{
|
| 64 |
+
"Size of BML (including cyst)": 0,
|
| 65 |
+
"Number of BML within subregion": 0,
|
| 66 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 67 |
+
},
|
| 68 |
+
"femur medial central BML":{
|
| 69 |
+
"Size of BML (including cyst)": 0,
|
| 70 |
+
"Number of BML within subregion": 0,
|
| 71 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 72 |
+
},
|
| 73 |
+
"femur lateral central BML":{
|
| 74 |
+
"Size of BML (including cyst)": 0,
|
| 75 |
+
"Number of BML within subregion": 0,
|
| 76 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 77 |
+
},
|
| 78 |
+
"femur medial posterior BML":{
|
| 79 |
+
"Size of BML (including cyst)": 0,
|
| 80 |
+
"Number of BML within subregion": 0,
|
| 81 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 82 |
+
},
|
| 83 |
+
"femur lateral posterior BML":{
|
| 84 |
+
"Size of BML (including cyst)": 0,
|
| 85 |
+
"Number of BML within subregion": 0,
|
| 86 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 87 |
+
},
|
| 88 |
+
"tibia subspinous BML":{
|
| 89 |
+
"Size of BML (including cyst)": 0,
|
| 90 |
+
"Number of BML within subregion": 0,
|
| 91 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 92 |
+
},
|
| 93 |
+
"tibia medial anterior BML":{
|
| 94 |
+
"Size of BML (including cyst)": 0,
|
| 95 |
+
"Number of BML within subregion": 0,
|
| 96 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 97 |
+
},
|
| 98 |
+
"tibia lateral anterior BML":{
|
| 99 |
+
"Size of BML (including cyst)": 0,
|
| 100 |
+
"Number of BML within subregion": 0,
|
| 101 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 102 |
+
},
|
| 103 |
+
"tibia medial central BML":{
|
| 104 |
+
"Size of BML (including cyst)": 0,
|
| 105 |
+
"Number of BML within subregion": 0,
|
| 106 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 107 |
+
},
|
| 108 |
+
"tibia lateral central BML":{
|
| 109 |
+
"Size of BML (including cyst)": 0,
|
| 110 |
+
"Number of BML within subregion": 0,
|
| 111 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 112 |
+
},
|
| 113 |
+
"tibia medial posterior BML":{
|
| 114 |
+
"Size of BML (including cyst)": 0,
|
| 115 |
+
"Number of BML within subregion": 0,
|
| 116 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 117 |
+
},
|
| 118 |
+
"tibia lateral posterior BML":{
|
| 119 |
+
"Size of BML (including cyst)": 0,
|
| 120 |
+
"Number of BML within subregion": 0,
|
| 121 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 122 |
+
},
|
| 123 |
+
"patella medial BML":{
|
| 124 |
+
"Size of BML (including cyst)": 0,
|
| 125 |
+
"Number of BML within subregion": 0,
|
| 126 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 127 |
+
},
|
| 128 |
+
"patella lateral BML":{
|
| 129 |
+
"Size of BML (including cyst)": 0,
|
| 130 |
+
"Number of BML within subregion": 0,
|
| 131 |
+
"% of lesion that is BML (excluding cyst)": 0
|
| 132 |
+
},
|
| 133 |
+
"Medial meniscus anterior morphology":{
|
| 134 |
+
"morphology": 0
|
| 135 |
+
},
|
| 136 |
+
"Lateral meniscus anterior morphology":{
|
| 137 |
+
"morphology": 0
|
| 138 |
+
},
|
| 139 |
+
"Medial meniscus body morphology":{
|
| 140 |
+
"morphology": 0
|
| 141 |
+
},
|
| 142 |
+
"Lateral meniscus body morphology":{
|
| 143 |
+
"morphology": 0
|
| 144 |
+
},
|
| 145 |
+
"Medial meniscus posterior morphology":{
|
| 146 |
+
"morphology": 0
|
| 147 |
+
},
|
| 148 |
+
"Lateral meniscus posterior morphology":{
|
| 149 |
+
"morphology": 0
|
| 150 |
+
},
|
| 151 |
+
"Meniscal hypertrophy":{
|
| 152 |
+
"location": 0
|
| 153 |
+
},
|
| 154 |
+
"Medial meniscus medial extrusion":{
|
| 155 |
+
"grade": 0
|
| 156 |
+
},
|
| 157 |
+
"Medial meniscus anterior extrusion":{
|
| 158 |
+
"grade": 0
|
| 159 |
+
},
|
| 160 |
+
"Lateral meniscus anterior extrusion":{
|
| 161 |
+
"grade": 0
|
| 162 |
+
},
|
| 163 |
+
"Lateral meniscus lateral extrusion":{
|
| 164 |
+
"grade": 0
|
| 165 |
+
},
|
| 166 |
+
"Meniscal root tear":{
|
| 167 |
+
"location": 0
|
| 168 |
+
},
|
| 169 |
+
"patella superior osteophyte":{
|
| 170 |
+
"grade": 0
|
| 171 |
+
},
|
| 172 |
+
"patella inferior osteophyte":{
|
| 173 |
+
"grade": 0
|
| 174 |
+
},
|
| 175 |
+
"patella medial osteophyte":{
|
| 176 |
+
"grade": 0
|
| 177 |
+
},
|
| 178 |
+
"patella lateral osteophyte":{
|
| 179 |
+
"grade": 0
|
| 180 |
+
},
|
| 181 |
+
"femur medial anterior osteophyte":{
|
| 182 |
+
"grade": 0
|
| 183 |
+
},
|
| 184 |
+
"femur lateral anterior osteophyte":{
|
| 185 |
+
"grade": 0
|
| 186 |
+
},
|
| 187 |
+
"femur medial posterior osteophyte":{
|
| 188 |
+
"grade": 0
|
| 189 |
+
},
|
| 190 |
+
"femur lateral posterior osteophyte":{
|
| 191 |
+
"grade": 0
|
| 192 |
+
},
|
| 193 |
+
"femur medial central osteophyte":{
|
| 194 |
+
"grade": 0
|
| 195 |
+
},
|
| 196 |
+
"femur lateral central osteophyte":{
|
| 197 |
+
"grade": 0
|
| 198 |
+
},
|
| 199 |
+
"tibia medial osteophyte":{
|
| 200 |
+
"grade": 0
|
| 201 |
+
},
|
| 202 |
+
"tibia lateral osteophyte":{
|
| 203 |
+
"grade": 0
|
| 204 |
+
},
|
| 205 |
+
"ACL":{
|
| 206 |
+
"Complete Tear?": 0,
|
| 207 |
+
"Associated with BML/cyst at site of insertion or origin?": 0,
|
| 208 |
+
"ACL Repair": 0
|
| 209 |
+
},
|
| 210 |
+
"PCL":{
|
| 211 |
+
"Complete Tear?": 0,
|
| 212 |
+
"Associated with BML/cyst at site of insertion or origin?": 0
|
| 213 |
+
},
|
| 214 |
+
"Patellar Tendon":{
|
| 215 |
+
"Signal abnormality": 0
|
| 216 |
+
},
|
| 217 |
+
"Ganglion cyst":{
|
| 218 |
+
"grade": 0
|
| 219 |
+
},
|
| 220 |
+
"Pes anserine bursitis":{
|
| 221 |
+
"grade": 0
|
| 222 |
+
},
|
| 223 |
+
"Infrapatellar bursitis":{
|
| 224 |
+
"grade": 0
|
| 225 |
+
},
|
| 226 |
+
"Prepatellar bursitis":{
|
| 227 |
+
"grade": 0
|
| 228 |
+
},
|
| 229 |
+
"Hoffa-Synovitis":{
|
| 230 |
+
"grade": 0
|
| 231 |
+
},
|
| 232 |
+
"Effusion-Synovitis":{
|
| 233 |
+
"grade": 0
|
| 234 |
+
},
|
| 235 |
+
"Iliotibial band signal":{
|
| 236 |
+
"grade": 0
|
| 237 |
+
},
|
| 238 |
+
"Popliteal cyst":{
|
| 239 |
+
"grade": 0
|
| 240 |
+
}
|
| 241 |
+
}
|
data/question_files/labels.json
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"background": 0,
|
| 3 |
+
"effusion-synovitis": 1,
|
| 4 |
+
"femur lateral anterior osteophyte": 2,
|
| 5 |
+
"femur lateral central bml": 3,
|
| 6 |
+
"femur lateral central cartilage lesion": 4,
|
| 7 |
+
"femur lateral central osteophyte": 5,
|
| 8 |
+
"femur lateral posterior bml": 6,
|
| 9 |
+
"femur lateral posterior cartilage lesion": 7,
|
| 10 |
+
"femur lateral posterior osteophyte": 8,
|
| 11 |
+
"femur lateral trochlea bml": 9,
|
| 12 |
+
"femur lateral trochlea cartilage lesion": 10,
|
| 13 |
+
"femur medial anterior osteophyte": 11,
|
| 14 |
+
"femur medial central bml": 12,
|
| 15 |
+
"femur medial central cartilage lesion": 13,
|
| 16 |
+
"femur medial central osteophyte": 14,
|
| 17 |
+
"femur medial posterior bml": 15,
|
| 18 |
+
"femur medial posterior cartilage lesion": 16,
|
| 19 |
+
"femur medial posterior osteophyte": 17,
|
| 20 |
+
"femur medial trochlea bml": 18,
|
| 21 |
+
"femur medial trochlea cartilage lesion": 19,
|
| 22 |
+
"hoffa-synovitis": 20,
|
| 23 |
+
"patella inferior osteophyte": 21,
|
| 24 |
+
"patella lateral bml": 22,
|
| 25 |
+
"patella lateral cartilage lesion": 23,
|
| 26 |
+
"patella lateral osteophyte": 24,
|
| 27 |
+
"patella medial bml": 25,
|
| 28 |
+
"patella medial cartilage lesion": 26,
|
| 29 |
+
"patella medial osteophyte": 27,
|
| 30 |
+
"patella superior osteophyte": 28,
|
| 31 |
+
"tibia lateral central bml": 29,
|
| 32 |
+
"tibia lateral central cartilage lesion": 30,
|
| 33 |
+
"tibia lateral osteophyte": 31,
|
| 34 |
+
"tibia lateral posterior bml": 32,
|
| 35 |
+
"tibia medial anterior bml": 33,
|
| 36 |
+
"tibia medial anterior cartilage lesion": 34,
|
| 37 |
+
"tibia medial central bml": 35,
|
| 38 |
+
"tibia medial central cartilage lesion": 36,
|
| 39 |
+
"tibia medial osteophyte": 37,
|
| 40 |
+
"tibia medial posterior bml": 38,
|
| 41 |
+
"tibia subspinous bml": 39,
|
| 42 |
+
"acl": 40,
|
| 43 |
+
"lateral meniscus": 41,
|
| 44 |
+
"lateral meniscus anterior morphology": 42,
|
| 45 |
+
"lateral meniscus posterior morphology": 43,
|
| 46 |
+
"medial meniscus": 44,
|
| 47 |
+
"medial meniscus anterior morphology": 45,
|
| 48 |
+
"medial meniscus posterior morphology": 46,
|
| 49 |
+
"patellar tendon": 47,
|
| 50 |
+
"pcl": 48,
|
| 51 |
+
"tibia cartilage": 49,
|
| 52 |
+
"lateral_central_femur": 50,
|
| 53 |
+
"lateral_posterior_femur": 51,
|
| 54 |
+
"lateral_trochlea_femur": 52,
|
| 55 |
+
"medial_central_femur": 53,
|
| 56 |
+
"medial_posterior_femur": 54,
|
| 57 |
+
"medial_trochlea_femur": 55,
|
| 58 |
+
"patella_lateral": 56,
|
| 59 |
+
"patella_medial": 57,
|
| 60 |
+
"tibia_lateral_anterior": 58,
|
| 61 |
+
"tibia_lateral_central": 59,
|
| 62 |
+
"tibia_lateral_posterior": 60,
|
| 63 |
+
"tibia_medial_anterior": 61,
|
| 64 |
+
"tibia_medial_central": 62,
|
| 65 |
+
"tibia_medial_posterior": 63,
|
| 66 |
+
"tibia_subspinous": 64
|
| 67 |
+
}
|
data/question_files/question_subregion_mapping.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"1": "patella_medial",
|
| 3 |
+
"2": "patella_lateral",
|
| 4 |
+
"3": "medial_trochlea_femur",
|
| 5 |
+
"4": "medial_central_femur",
|
| 6 |
+
"5": "medial_posterior_femur",
|
| 7 |
+
"6": "lateral_trochlea_femur",
|
| 8 |
+
"7": "lateral_central_femur",
|
| 9 |
+
"8": "lateral_posterior_femur",
|
| 10 |
+
"9": "tibia_medial_anterior",
|
| 11 |
+
"10": "tibia_medial_central",
|
| 12 |
+
"11": "tibia_medial_posterior",
|
| 13 |
+
"12": "tibia_lateral_anterior",
|
| 14 |
+
"13": "tibia_lateral_central",
|
| 15 |
+
"14": "tibia_lateral_posterior",
|
| 16 |
+
"15": "tibia_subspinous",
|
| 17 |
+
"16": "patella_medial",
|
| 18 |
+
"17": "patella_lateral",
|
| 19 |
+
"18": "medial_trochlea_femur",
|
| 20 |
+
"19": "medial_central_femur",
|
| 21 |
+
"20": "medial_posterior_femur",
|
| 22 |
+
"21": "lateral_trochlea_femur",
|
| 23 |
+
"22": "lateral_central_femur",
|
| 24 |
+
"23": "lateral_posterior_femur",
|
| 25 |
+
"24": "tibia_medial_anterior",
|
| 26 |
+
"25": "tibia_medial_central",
|
| 27 |
+
"26": "tibia_medial_posterior",
|
| 28 |
+
"27": "tibia_lateral_anterior",
|
| 29 |
+
"28": "tibia_lateral_central",
|
| 30 |
+
"29": "tibia_lateral_posterior",
|
| 31 |
+
"30": ["patella_medial", "patella_lateral"],
|
| 32 |
+
"31": ["patella_medial", "patella_lateral"],
|
| 33 |
+
"32": "patella_medial",
|
| 34 |
+
"33": "patella_lateral",
|
| 35 |
+
"34": "medial_trochlea_femur",
|
| 36 |
+
"35": "lateral_trochlea_femur",
|
| 37 |
+
"36": "medial_posterior_femur",
|
| 38 |
+
"37": "lateral_posterior_femur",
|
| 39 |
+
"38": "lateral_central_femur",
|
| 40 |
+
"39": "lateral_posterior_femur",
|
| 41 |
+
"40": "tibia_medial_anterior",
|
| 42 |
+
"41": "tibia_lateral_anterior",
|
| 43 |
+
"42": "hoffa-synovitis",
|
| 44 |
+
"43": "effusion-synovitis",
|
| 45 |
+
"44": "medial meniscus",
|
| 46 |
+
"45": "medial meniscus",
|
| 47 |
+
"46": "lateral meniscus",
|
| 48 |
+
"47": "lateral meniscus",
|
| 49 |
+
"48": "medial meniscus",
|
| 50 |
+
"49": "medial meniscus",
|
| 51 |
+
"50": "medial meniscus",
|
| 52 |
+
"51": "lateral meniscus",
|
| 53 |
+
"52": "lateral meniscus",
|
| 54 |
+
"53": "lateral meniscus",
|
| 55 |
+
"54": "medial meniscus",
|
| 56 |
+
"55": "lateral meniscus",
|
| 57 |
+
"56": "medial meniscus",
|
| 58 |
+
"57": "lateral meniscus",
|
| 59 |
+
"58": "medial meniscus",
|
| 60 |
+
"59": "lateral meniscus",
|
| 61 |
+
"60": "acl",
|
| 62 |
+
"61": "pcl",
|
| 63 |
+
"62": "patellar tendon",
|
| 64 |
+
"63": "",
|
| 65 |
+
"64": "",
|
| 66 |
+
"65": "",
|
| 67 |
+
"66": "",
|
| 68 |
+
"67": "",
|
| 69 |
+
"68": "",
|
| 70 |
+
"69": ""
|
| 71 |
+
}
|
data/question_files/questions.json
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"1": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the patella medial subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the patella medial subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"patella medial BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 3 |
+
"2": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the patella lateral subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the patella lateral subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"patella lateral BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 4 |
+
"3": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the femur medial trochlea subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the femur medial trochlea subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur medial trochlea BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 5 |
+
"4": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the femur medial central subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the femur medial central subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur medial central BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 6 |
+
"5": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the femur medial posterior subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the femur medial posterior subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur medial posterior BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 7 |
+
"6": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the femur lateral trochlea subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the femur lateral trochlea subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur lateral trochlea BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 8 |
+
"7": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the femur lateral central subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the femur lateral central subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur lateral central BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 9 |
+
"8": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the femur lateral posterior subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the femur lateral posterior subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur lateral posterior BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 10 |
+
"9": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the tibia medial anterior subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the tibia medial anterior subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia medial anterior BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 11 |
+
"10": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the tibia medial central subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the tibia medial central subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia medial central BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 12 |
+
"11": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the tibia medial posterior subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the tibia medial posterior subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia medial posterior BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 13 |
+
"12": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the tibia lateral anterior subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the tibia lateral anterior subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia lateral anterior BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 14 |
+
"13": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the tibia lateral central subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the tibia lateral central subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia lateral central BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 15 |
+
"14": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the tibia lateral posterior subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the tibia lateral posterior subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia lateral posterior BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 16 |
+
"15": "In this DESS MRI, can you diagnose bone-marrow lesions (BMLs) in the tibia subspinous subregion? BMLs are scored using three MOAKS components: Size (Grade 0: None, Grade 1: <33% of subregion, Grade 2: 33-66% of subregion, Grade 3: >66% of subregion), Number (Grade 0: None, Grade 1: 1 BML, Grade 2: 2 BMLs, Grade 3: ≥3 BMLs), and % of lesion that is BML excluding cyst (Grade 0: None, Grade 1: <33%, Grade 2: 33-66%, Grade 3: >66%). Provide your reasoning, the bounding box of the tibia subspinous subregion, and the MOAKS scores for size, number of BMLs, and percent of lesion that is BML. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia subspinous BML\": {\"Size of BML (including cyst)\": (grade from 0-3), \"Number of BML within subregion\": (grade from 0-3), \"% of lesion that is BML (excluding cyst)\": (grade from 0-3)}}}",
|
| 17 |
+
"16": "In this DESS MRI, can you diagnose cartilage lesions in the patella medial subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the patella medial subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"patella medial cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 18 |
+
"17": "In this DESS MRI, can you diagnose cartilage lesions in the patella lateral subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the patella lateral subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"patella lateral cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 19 |
+
"18": "In this DESS MRI, can you diagnose cartilage lesions in the femur medial trochlea subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the femur medial trochlea subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur medial trochlea cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 20 |
+
"19": "In this DESS MRI, can you diagnose cartilage lesions in the femur medial central subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the femur medial central subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur medial central cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 21 |
+
"20": "In this DESS MRI, can you diagnose cartilage lesions in the femur medial posterior subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the femur medial posterior subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur medial posterior cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 22 |
+
"21": "In this DESS MRI, can you diagnose cartilage lesions in the femur lateral trochlea subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the femur lateral trochlea subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur lateral trochlea cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 23 |
+
"22": "In this DESS MRI, can you diagnose cartilage lesions in the femur lateral central subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the femur lateral central subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur lateral central cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 24 |
+
"23": "In this DESS MRI, can you diagnose cartilage lesions in the femur lateral posterior subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the femur lateral posterior subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur lateral posterior cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 25 |
+
"24": "In this DESS MRI, can you diagnose cartilage lesions in the tibia medial anterior subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the tibia medial anterior subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia medial anterior cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 26 |
+
"25": "In this DESS MRI, can you diagnose cartilage lesions in the tibia medial central subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the tibia medial central subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia medial central cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 27 |
+
"26": "In this DESS MRI, can you diagnose cartilage lesions in the tibia medial posterior subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the tibia medial posterior subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia medial posterior cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 28 |
+
"27": "In this DESS MRI, can you diagnose cartilage lesions in the tibia lateral anterior subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the tibia lateral anterior subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia lateral anterior cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 29 |
+
"28": "In this DESS MRI, can you diagnose cartilage lesions in the tibia lateral central subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the tibia lateral central subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia lateral central cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 30 |
+
"29": "In this DESS MRI, can you diagnose cartilage lesions in the tibia lateral posterior subregion? Cartilage lesions are scored using two MOAKS components: Size (Grade 0: None, Grade 1: <10% of surface area, Grade 2: 10-75% of surface area, Grade 3: >75% of surface area) and Percent of full-thickness loss (Grade 0: No full-thickness loss, Grade 1: <10% of cartilage defect shows full-thickness loss, Grade 2: 10-75% of cartilage defect shows full-thickness loss, Grade 3: >75% of cartilage defect shows full-thickness loss). Provide your reasoning, the bounding box of the tibia lateral posterior subregion, and the MOAKS scores for size and depth. The output format should be a JSON object with the bounding box coordinates and the MOAKS scores: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia lateral posterior cartilage lesion\": {\"Size of lesion\": (grade from 0-3), \"Depth of lesion\": (grade from 0-3)}}}",
|
| 31 |
+
"30": "In this DESS MRI, identify and grade the osteophyte at the patella superior location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the patella region, and the MOAKS grade. Represent the MOAKS grade in this format: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"patella superior osteophyte\": {\"grade\": (grade from 0-3)}}}",
|
| 32 |
+
"31": "In this DESS MRI, identify and grade the osteophyte at the patella inferior location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the patella region, and the MOAKS grade. Represent the MOAKS grade in this format: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"patella inferior osteophyte\": {\"grade\": (grade from 0-3)}}}",
|
| 33 |
+
"32": "In this DESS MRI, identify and grade the osteophyte at the patella medial location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the patella medial region, and the MOAKS grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"patella medial osteophyte\": {\"grade\": (grade from 0-3)}}}",
|
| 34 |
+
"33": "In this DESS MRI, identify and grade the osteophyte at the patella lateral location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the patella lateral region, and the MOAKS grade. Represent the MOAKS grade in this format: {\"patella lateral osteophyte\": {\"grade\": (grade from 0-3)}}",
|
| 35 |
+
"34": "In this DESS MRI, identify and grade the osteophyte at the femur medial anterior location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the femur medial anterior region, and the MOAKS grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur medial anterior osteophyte\": {\"grade\": (grade from 0-3)}}}",
|
| 36 |
+
"35": "In this DESS MRI, identify and grade the osteophyte at the femur medial central location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the femur medial central region, and the MOAKS grade. Represent the MOAKS grade in this format: {\"femur medial central osteophyte\": {\"grade\": (grade from 0-3)}}",
|
| 37 |
+
"36": "In this DESS MRI, identify and grade the osteophyte at the femur medial posterior location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the femur medial posterior region, and the MOAKS grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur medial posterior osteophyte\": {\"grade\": (grade from 0-3)}}}",
|
| 38 |
+
"37": "In this DESS MRI, identify and grade the osteophyte at the femur lateral anterior location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the femur lateral anterior region, and the MOAKS grade. Represent the MOAKS grade in this format: {\"femur lateral anterior osteophyte\": {\"grade\": (grade from 0-3)}}",
|
| 39 |
+
"38": "In this DESS MRI, identify and grade the osteophyte at the femur lateral central location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the femur lateral central region, and the MOAKS grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur lateral central osteophyte\": {\"grade\": (grade from 0-3)}}}",
|
| 40 |
+
"39": "In this DESS MRI, identify and grade the osteophyte at the femur lateral posterior location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the femur lateral posterior region, and the MOAKS grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"femur lateral posterior osteophyte\": {\"grade\": (grade from 0-3)}}}",
|
| 41 |
+
"40": "In this DESS MRI, identify and grade the osteophyte at the tibia medial location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the tibia medial region, and the MOAKS grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia medial osteophyte\": {\"grade\": (grade from 0-3)}}}",
|
| 42 |
+
"41": "In this DESS MRI, identify and grade the osteophyte at the tibia lateral location. Osteophytes are scored using MOAKS grading: Grade 0: None, Grade 1: Small, Grade 2: Medium, Grade 3: Large. If there are multiple osteophytes in a given subregion, the largest will be evaluated. The size of osteophyte should reflect protuberance (how far the osteophyte extends from the joint) rather than total volume of osteophyte. Provide your reasoning, the bounding box of the tibia lateral region, and the MOAKS grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"tibia lateral osteophyte\": {\"grade\": (grade from 0-3)}}}",
|
| 43 |
+
"42": "In this DESS MRI, assess Hoffa-synovitis. Hoffa-synovitis is scored using MOAKS grading based on the hyperintensity (brightness) in Hoffa's fat pad: Grade 0: Normal (fat pad looks dark throughout with minimal traceable linear streaks), Grade 1: Mild (fat pad looks dark in general but with some mild areas of hyperintensity), Grade 2: Moderate (fat pad shows some moderate areas of hyperintensity), Grade 3: Severe (fat pad shows severe areas of hyperintensity). Provide your reasoning, the bounding box of the Hoffa region, and the MOAKS grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS score: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"Hoffa-Synovitis\": {\"grade\": (grade from 0-3)}}}",
|
| 44 |
+
"43": "In this DESS MRI, assess effusion-synovitis. Effusion-synovitis is scored using MOAKS grading based on the size of the fluid signal in the joint cavity: Grade 0: Physiologic amount of fluid, Grade 1: Small amount of fluid continuous in the retropatellar space, Grade 2: Medium amount of fluid, with slight convexity of the suprapatellar bursa, Grade 3: Large amount of fluid, causing capsular distension. Provide your reasoning, the bounding box of the effusion, and the MOAKS grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"effusion-synovitis\": {\"grade\": (grade from 0-3)}}}",
|
| 45 |
+
"44": "In this DESS MRI, measure medial meniscus anterior extrusions. Meniscal extrusion is measured as the maximum protrusion distance from the tibial plateau. Meniscal extrusion is scored using MOAKS grading: Grade 0: Extrusion is below 2mm, Grade 1: Extrusion is between 2 to 3mm, Grade 2: Extrusion is between 3 to 4.9mm, Grade 3: Extrusion is over 5mm. Provide your reasoning, the bounding box of the medial meniscus region, and the MOAKS extrusion grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"medial meniscus anterior extrusion\": (grade from 0-3)}}",
|
| 46 |
+
"45": "In this DESS MRI, measure medial meniscus medial extrusions. Meniscal extrusion is measured as the maximum protrusion distance from the tibial plateau. Meniscal extrusion is scored using MOAKS grading: Grade 0: Extrusion is below 2mm, Grade 1: Extrusion is between 2 to 3mm, Grade 2: Extrusion is between 3 to 4.9mm, Grade 3: Extrusion is over 5mm. Provide your reasoning, the bounding box of the medial meniscus region, and the MOAKS extrusion grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_grade\": {\"medial meniscus medial extrusion\": (grade from 0-3)}}",
|
| 47 |
+
"46": "In this DESS MRI, measure lateral meniscus anterior extrusions. Meniscal extrusion is measured as the maximum protrusion distance from the tibial plateau. Meniscal extrusion is scored using MOAKS grading: Grade 0: Extrusion is below 2mm, Grade 1: Extrusion is between 2 to 3mm, Grade 2: Extrusion is between 3 to 4.9mm, Grade 3: Extrusion is over 5mm. Provide your reasoning, the bounding box of the lateral meniscus region, and the MOAKS extrusion grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"lateral meniscus anterior extrusion\": {\"grade\": (grade from 0-3)}}}",
|
| 48 |
+
"47": "In this DESS MRI, measure lateral meniscus lateral extrusions. Meniscal extrusion is measured as the maximum protrusion distance from the tibial plateau. Meniscal extrusion is scored using MOAKS grading: Grade 0: Extrusion is below 2mm, Grade 1: Extrusion is between 2 to 3mm, Grade 2: Extrusion is between 3 to 4.9mm, Grade 3: Extrusion is over 5mm. Provide your reasoning, the bounding box of the lateral meniscus region, and the MOAKS extrusion grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"lateral meniscus lateral extrusion\": {\"grade\": (grade from 0-3)}}}",
|
| 49 |
+
"48": "In this DESS MRI, describe the medial meniscus anterior morphology. Meniscal morphology is scored using MOAKS grading: Grade 0: Normal meniscus, Grade 1: Signal abnormality (not severe enough to be considered a tear), Grade 2: Radial tear, Grade 3: Horizontal tear, Grade 4: Vertical tear, Grade 5: Complex tear, Grade 6: Partial maceration, Grade 7: Progressive partial maceration (only for follow-up), Grade 8: Complete maceration. Provide your reasoning, the bounding box of the medial meniscus region, and the MOAKS morphology grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"medial meniscus anterior morphology\": {\"morphology\": (grade from 0-8)}}}",
|
| 50 |
+
"49": "In this DESS MRI, describe the medial meniscus body morphology. Meniscal morphology is scored using MOAKS grading: Grade 0: Normal meniscus, Grade 1: Signal abnormality (not severe enough to be considered a tear), Grade 2: Radial tear, Grade 3: Horizontal tear, Grade 4: Vertical tear, Grade 5: Complex tear, Grade 6: Partial maceration, Grade 7: Progressive partial maceration (only for follow-up), Grade 8: Complete maceration. Provide your reasoning, the bounding box of the medial meniscus region, and the MOAKS morphology grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"medial meniscus body morphology\": {\"morphology\": (grade from 0-8)}}}",
|
| 51 |
+
"50": "In this DESS MRI, describe the medial meniscus posterior morphology. Meniscal morphology is scored using MOAKS grading: Grade 0: Normal meniscus, Grade 1: Signal abnormality (not severe enough to be considered a tear), Grade 2: Radial tear, Grade 3: Horizontal tear, Grade 4: Vertical tear, Grade 5: Complex tear, Grade 6: Partial maceration, Grade 7: Progressive partial maceration (only for follow-up), Grade 8: Complete maceration. Provide your reasoning, the bounding box of the medial meniscus region, and the MOAKS morphology grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"medial meniscus posterior morphology\": {\"morphology\": (grade from 0-8)}}}",
|
| 52 |
+
"51": "In this DESS MRI, describe the lateral meniscus anterior morphology. Meniscal morphology is scored using MOAKS grading: Grade 0: Normal meniscus, Grade 1: Signal abnormality (not severe enough to be considered a tear), Grade 2: Radial tear, Grade 3: Horizontal tear, Grade 4: Vertical tear, Grade 5: Complex tear, Grade 6: Partial maceration, Grade 7: Progressive partial maceration (only for follow-up), Grade 8: Complete maceration. Provide your reasoning, the bounding box of the lateral meniscus region, and the MOAKS morphology grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_grade\": {\"lateral meniscus anterior morphology\": {\"morphology\": (grade from 0-8)}}}",
|
| 53 |
+
"52": "In this DESS MRI, describe the lateral meniscus body morphology. Meniscal morphology is scored using MOAKS grading: Grade 0: Normal meniscus, Grade 1: Signal abnormality (not severe enough to be considered a tear), Grade 2: Radial tear, Grade 3: Horizontal tear, Grade 4: Vertical tear, Grade 5: Complex tear, Grade 6: Partial maceration, Grade 7: Progressive partial maceration (only for follow-up), Grade 8: Complete maceration. Provide your reasoning, the bounding box of the lateral meniscus body region, and the MOAKS morphology grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_grade\": {\"lateral meniscus body morphology\": {\"morphology\": (grade from 0-8)}}}",
|
| 54 |
+
"53": "In this DESS MRI, describe the lateral meniscus posterior morphology. Meniscal morphology is scored using MOAKS grading: Grade 0: Normal meniscus, Grade 1: Signal abnormality (not severe enough to be considered a tear), Grade 2: Radial tear, Grade 3: Horizontal tear, Grade 4: Vertical tear, Grade 5: Complex tear, Grade 6: Partial maceration, Grade 7: Progressive partial maceration (only for follow-up), Grade 8: Complete maceration. Provide your reasoning, the bounding box of the lateral meniscus region, and the MOAKS morphology grade. The output format should be a JSON object with the bounding box coordinates and the MOAKS grade: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"MOAKS_scores\": {\"lateral meniscus posterior morphology\": {\"morphology\": (grade from 0-8)}}}",
|
| 55 |
+
"54": "In this DESS MRI, detect a medial meniscal cyst, if present. Provide your reasoning, the bounding box of the medial meniscus, and the location of any tear. Tear location is encoded as one of the following integers: \n0 = MMA (Medial Meniscus Anterior), \n1 = MMB (Medial Meniscus Body), \n2 = MMP (Medial Meniscus Posterior), 3 = No tear detected. The output format should be a JSON object with the bounding box coordinates and the cyst presence: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"medial_meniscal_cyst\": {\"presence\": 0 | 1, \"tear_location\": (0-3)}}.",
|
| 56 |
+
"55": "In this DESS MRI, detect a lateral meniscal cyst, if present. Provide your reasoning, the bounding box of the lateral meniscus, and the location of any tear. Tear location is encoded as one of the following integers: \n0 = LMA (Lateral Meniscus Anterior), \n1 = LMB (Lateral Meniscus Body), \n2 = LMP (Lateral Meniscus Posterior), 3 = No tear detected. The output format should be a JSON object with the bounding box coordinates and the cyst presence: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"lateral_meniscal_cyst\": {\"presence\": 0 | 1, \"tear_location\": (0-3)}}.",
|
| 57 |
+
"56": "In this DESS MRI, detect medial meniscal hypertrophy, if there is any. Provide your reasoning, the bounding box of the medial meniscus region, and whether it's present. The output format should be a JSON object with the bounding box coordinates and the hypertrophy presence: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"medial_meniscal_hypertrophy\": {\"presence\": (0 | 1)}}",
|
| 58 |
+
"57": "In this DESS MRI, detect lateral meniscal hypertrophy, if there is any. Provide your reasoning, the bounding box of the lateral meniscus region, and whether it's present. The output format should be a JSON object with the bounding box coordinates and the hypertrophy presence: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"lateral_meniscal_hypertrophy\": {\"presence\": (0 | 1)}}",
|
| 59 |
+
"58": "In this DESS MRI, detect a meniscal root tear at the MMRT, if there is any. Provide your reasoning and the bounding box of the medial meniscus region. The output format should be a JSON object with the bounding box coordinates and the root tear information: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"medial_meniscal_root_tear\": {\"presence\": (0 | 1)}}",
|
| 60 |
+
"59": "In this DESS MRI, detect a meniscal root tear at the LMRT, if there is any. Provide your reasoning and the bounding box of the lateral meniscus region. The output format should be a JSON object with the bounding box coordinates and the root tear information: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"lateral_meniscal_root_tear\": {\"presence\": (0 | 1)}}",
|
| 61 |
+
"60": "In this DESS MRI, assess the ACL. Provide your reasoning, the bounding box of the ACL region and indicate for the following: whether there is a complete tear and whether there is an associated BML or cyst at the site of insertion or origin, and whether there has been ACL repair. Provide your reasoning, the bounding box of the ACL region, and the assessment. The output format should be a JSON object with the bounding box coordinates and the assessment: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"ACL\": {\"Complete Tear\": (0 | 1), \"Associated with BML/cyst at site of insertion or origin\": (0 | 1), \"ACL Repair\": (0 | 1)}}",
|
| 62 |
+
"61": "In this DESS MRI, assess the PCL. Provide your reasoning, the bounding box of the PCL region and indicate for the following: whether there is a complete tear and whether there is an associated BML or cyst at the site of insertion or origin. Provide your reasoning, the bounding box of the PCL region, and the assessment. The output format should be a JSON object with the bounding box coordinates and the assessment: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"PCL\": {\"Complete Tear\": (0 | 1), \"Associated with BML/cyst at site of insertion or origin\": (0 | 1)}}",
|
| 63 |
+
"62": "In this DESS MRI, assess the patellar tendon. Provide your reasoning, the bounding box of the patellar tendon region, and whether there is a signal abnormality. Provide your reasoning, the bounding box of the patellar tendon region, and the assessment. The output format should be a JSON object with the bounding box coordinates and the assessment: {\"bounding_box\": [start_slice, end_slice, x_min, x_max, y_min, y_max], \"Patellar_Tendon\": {\"Signal Abnormality\": (0 | 1)}}",
|
| 64 |
+
"63": "In this DESS MRI, detect pes anserine bursitis, if there is any. Provide your reasoning and whether it is present. The output format should be a JSON object with the pes anserine bursitis presence: {\"pes_anserine_bursitis_presence\": {\"presence\": (0 | 1)}}",
|
| 65 |
+
"64": "In this DESS MRI, detect iliotibial band signal, if there is any. Provide your reasoning and whether it is present. The output format should be a JSON object with the iliotibial band signal presence: {\"iliotibial_band_signal_presence\": {\"presence\": (0 | 1)}}",
|
| 66 |
+
"65": "In this DESS MRI, detect a popliteal cyst, if there is any. Provide your reasoning and whether it is present. The output format should be a JSON object with the popliteal cyst presence: {\"popliteal_cyst_presence\": {\"presence\": (0 | 1)}}",
|
| 67 |
+
"66": "In this DESS MRI, detect infrapatellar bursitis, if there is any. Provide your reasoning and whether it is present. The output format should be a JSON object with the infrapatellar bursitis presence: {\"infrapatellar_bursitis_presence\": {\"presence\": (0 | 1)}}",
|
| 68 |
+
"67": "In this DESS MRI, detect prepatellar bursitis, if there is any. Provide your reasoning and whether it is present. The output format should be a JSON object with the prepatellar bursitis presence: {\"prepatellar_bursitis_presence\": {\"presence\": (0 | 1)}}",
|
| 69 |
+
"68": "In this DESS MRI, detect a ganglion cyst, if there is any. Provide your reasoning and whether it is present. The output format should be a JSON object with the ganglion cyst presence: {\"ganglion_cyst_presence\": {\"presence\": (0 | 1)}}",
|
| 70 |
+
"69": "In this DESS MRI, detect loose bodies, if there are any. Provide your reasoning and whether it is present. The output format should be a JSON object with the loose bodies presence: {\"loose_bodies_presence\": {\"presence\": (0 | 1)}}"
|
| 71 |
+
}
|
data/split_files/all_studies.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/split_files/test_split.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/split_files/train_split.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/split_files/val_split.csv
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|