use ITKreader to avoid mass logs at image loading
Browse files- configs/inference.json +2 -1
- configs/metadata.json +2 -1
- configs/train.json +2 -1
configs/inference.json
CHANGED
@@ -23,7 +23,8 @@
|
|
23 |
"transforms": [
|
24 |
{
|
25 |
"_target_": "LoadImaged",
|
26 |
-
"keys": "image"
|
|
|
27 |
},
|
28 |
{
|
29 |
"_target_": "EnsureChannelFirstd",
|
|
|
23 |
"transforms": [
|
24 |
{
|
25 |
"_target_": "LoadImaged",
|
26 |
+
"keys": "image",
|
27 |
+
"reader": "ITKReader"
|
28 |
},
|
29 |
{
|
30 |
"_target_": "EnsureChannelFirstd",
|
configs/metadata.json
CHANGED
@@ -1,7 +1,8 @@
|
|
1 |
{
|
2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
3 |
-
"version": "0.3.
|
4 |
"changelog": {
|
|
|
5 |
"0.3.8": "restructure readme to match updated template",
|
6 |
"0.3.7": "Update metric in metadata",
|
7 |
"0.3.6": "Update ckpt drive link",
|
|
|
1 |
{
|
2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
3 |
+
"version": "0.3.9",
|
4 |
"changelog": {
|
5 |
+
"0.3.9": "use ITKreader to avoid mass logs at image loading",
|
6 |
"0.3.8": "restructure readme to match updated template",
|
7 |
"0.3.7": "Update metric in metadata",
|
8 |
"0.3.6": "Update ckpt drive link",
|
configs/train.json
CHANGED
@@ -41,7 +41,8 @@
|
|
41 |
"keys": [
|
42 |
"image",
|
43 |
"label"
|
44 |
-
]
|
|
|
45 |
},
|
46 |
{
|
47 |
"_target_": "EnsureChannelFirstd",
|
|
|
41 |
"keys": [
|
42 |
"image",
|
43 |
"label"
|
44 |
+
],
|
45 |
+
"reader": "ITKReader"
|
46 |
},
|
47 |
{
|
48 |
"_target_": "EnsureChannelFirstd",
|