Fixed duplication of input output format section
Browse files- README.md +2 -5
- configs/metadata.json +6 -3
- docs/README.md +2 -5
README.md
CHANGED
@@ -9,13 +9,10 @@ license: apache-2.0
|
|
9 |
A pre-trained model for breast-density classification.
|
10 |
|
11 |
# Model Overview
|
12 |
-
This model is trained using transfer learning on InceptionV3. The model weights were fine tuned using the Mayo Clinic Data. The details of training and data is outlined in https://arxiv.org/abs/2202.08238.
|
13 |
-
|
14 |
The bundle does not support torchscript.
|
15 |
|
16 |
-
# Input and Output Formats
|
17 |
-
The input image should have the size [3, 299, 299]. The output is an array with probabilities for each of the four class.
|
18 |
-
|
19 |
# Sample Data
|
20 |
In the folder `sample_data` few example input images are stored for each category of images. These images are stored in jpeg format for sharing purpose.
|
21 |
|
|
|
9 |
A pre-trained model for breast-density classification.
|
10 |
|
11 |
# Model Overview
|
12 |
+
This model is trained using transfer learning on InceptionV3. The model weights were fine tuned using the Mayo Clinic Data. The details of training and data is outlined in https://arxiv.org/abs/2202.08238. The images should be resampled to a size [299, 299, 3] for training.
|
13 |
+
A training pipeline will be added to the model zoo in near future.
|
14 |
The bundle does not support torchscript.
|
15 |
|
|
|
|
|
|
|
16 |
# Sample Data
|
17 |
In the folder `sample_data` few example input images are stored for each category of images. These images are stored in jpeg format for sharing purpose.
|
18 |
|
configs/metadata.json
CHANGED
@@ -1,7 +1,10 @@
|
|
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.
|
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"
|
@@ -37,8 +40,8 @@
|
|
37 |
"modality": "Mammogram",
|
38 |
"num_channels": 3,
|
39 |
"spatial_shape": [
|
40 |
-
|
41 |
-
|
42 |
],
|
43 |
"dtype": "float32",
|
44 |
"value_range": [
|
|
|
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.5",
|
4 |
"changelog": {
|
5 |
+
"0.1.5": "Fixed duplication of input output format section",
|
6 |
+
"0.1.4": "Changed Readme",
|
7 |
+
"0.1.3": "Change input_dim from 229 to 299",
|
8 |
"0.1.2": "black autofix format and add name tag",
|
9 |
"0.1.1": "update license files",
|
10 |
"0.1.0": "complete the model package"
|
|
|
40 |
"modality": "Mammogram",
|
41 |
"num_channels": 3,
|
42 |
"spatial_shape": [
|
43 |
+
299,
|
44 |
+
299
|
45 |
],
|
46 |
"dtype": "float32",
|
47 |
"value_range": [
|
docs/README.md
CHANGED
@@ -2,13 +2,10 @@
|
|
2 |
A pre-trained model for breast-density classification.
|
3 |
|
4 |
# Model Overview
|
5 |
-
This model is trained using transfer learning on InceptionV3. The model weights were fine tuned using the Mayo Clinic Data. The details of training and data is outlined in https://arxiv.org/abs/2202.08238.
|
6 |
-
|
7 |
The bundle does not support torchscript.
|
8 |
|
9 |
-
# Input and Output Formats
|
10 |
-
The input image should have the size [3, 299, 299]. The output is an array with probabilities for each of the four class.
|
11 |
-
|
12 |
# Sample Data
|
13 |
In the folder `sample_data` few example input images are stored for each category of images. These images are stored in jpeg format for sharing purpose.
|
14 |
|
|
|
2 |
A pre-trained model for breast-density classification.
|
3 |
|
4 |
# Model Overview
|
5 |
+
This model is trained using transfer learning on InceptionV3. The model weights were fine tuned using the Mayo Clinic Data. The details of training and data is outlined in https://arxiv.org/abs/2202.08238. The images should be resampled to a size [299, 299, 3] for training.
|
6 |
+
A training pipeline will be added to the model zoo in near future.
|
7 |
The bundle does not support torchscript.
|
8 |
|
|
|
|
|
|
|
9 |
# Sample Data
|
10 |
In the folder `sample_data` few example input images are stored for each category of images. These images are stored in jpeg format for sharing purpose.
|
11 |
|