black autofix format and add name tag
Browse files- configs/metadata.json +3 -1
- scripts/create_dataset.py +0 -1
configs/metadata.json
CHANGED
@@ -1,16 +1,18 @@
|
|
1 |
{
|
2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
|
|
3 |
"changelog": {
|
|
|
4 |
"0.1.1": "update license files",
|
5 |
"0.1.0": "complete the model package"
|
6 |
},
|
7 |
-
"version": "0.1.1",
|
8 |
"monai_version": "1.0.0",
|
9 |
"pytorch_version": "1.12.1",
|
10 |
"numpy_version": "1.21.2",
|
11 |
"optional_packages_version": {
|
12 |
"torchvision": "0.13.1"
|
13 |
},
|
|
|
14 |
"task": "Breast Density Classification",
|
15 |
"description": "A pre-trained model for classifying breast images (mammograms) ",
|
16 |
"authors": "Center for Augmented Intelligence in Imaging, Mayo Clinic Florida",
|
|
|
1 |
{
|
2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
3 |
+
"version": "0.1.2",
|
4 |
"changelog": {
|
5 |
+
"0.1.2": "black autofix format and add name tag",
|
6 |
"0.1.1": "update license files",
|
7 |
"0.1.0": "complete the model package"
|
8 |
},
|
|
|
9 |
"monai_version": "1.0.0",
|
10 |
"pytorch_version": "1.12.1",
|
11 |
"numpy_version": "1.21.2",
|
12 |
"optional_packages_version": {
|
13 |
"torchvision": "0.13.1"
|
14 |
},
|
15 |
+
"name": "Breast density classification",
|
16 |
"task": "Breast Density Classification",
|
17 |
"description": "A pre-trained model for classifying breast images (mammograms) ",
|
18 |
"authors": "Center for Augmented Intelligence in Imaging, Mayo Clinic Florida",
|
scripts/create_dataset.py
CHANGED
@@ -5,7 +5,6 @@ import sys
|
|
5 |
|
6 |
|
7 |
def main(base_dir: str, output_file: str):
|
8 |
-
|
9 |
list_classes = ["A", "B", "C", "D"]
|
10 |
|
11 |
output_list = []
|
|
|
5 |
|
6 |
|
7 |
def main(base_dir: str, output_file: str):
|
|
|
8 |
list_classes = ["A", "B", "C", "D"]
|
9 |
|
10 |
output_list = []
|