Unify naming
Browse files- configs/inference.json +1 -0
- configs/metadata.json +2 -1
- configs/train.json +1 -0
configs/inference.json
CHANGED
@@ -2,6 +2,7 @@
|
|
2 |
"imports": [
|
3 |
"$import glob"
|
4 |
],
|
|
|
5 |
"device": "$torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')",
|
6 |
"ckpt_path": "$@bundle_root + '/models/model.pt'",
|
7 |
"output_dir": "./outputs",
|
|
|
2 |
"imports": [
|
3 |
"$import glob"
|
4 |
],
|
5 |
+
"bundle_root": ".",
|
6 |
"device": "$torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')",
|
7 |
"ckpt_path": "$@bundle_root + '/models/model.pt'",
|
8 |
"output_dir": "./outputs",
|
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_generator_20220718.json",
|
3 |
-
"version": "0.
|
4 |
"changelog": {
|
|
|
5 |
"0.1.0": "Initial version"
|
6 |
},
|
7 |
"monai_version": "0.9.0",
|
|
|
1 |
{
|
2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_generator_20220718.json",
|
3 |
+
"version": "0.2.0",
|
4 |
"changelog": {
|
5 |
+
"0.2.0": "unify naming",
|
6 |
"0.1.0": "Initial version"
|
7 |
},
|
8 |
"monai_version": "0.9.0",
|
configs/train.json
CHANGED
@@ -5,6 +5,7 @@
|
|
5 |
"$from losses import discriminator_loss",
|
6 |
"$from losses import generator_loss"
|
7 |
],
|
|
|
8 |
"device": "$torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')",
|
9 |
"ckpt_path": "$@bundle_root + '/models/model.pt'",
|
10 |
"dataset_dir": "./MedNIST/Hand",
|
|
|
5 |
"$from losses import discriminator_loss",
|
6 |
"$from losses import generator_loss"
|
7 |
],
|
8 |
+
"bundle_root": ".",
|
9 |
"device": "$torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')",
|
10 |
"ckpt_path": "$@bundle_root + '/models/model.pt'",
|
11 |
"dataset_dir": "./MedNIST/Hand",
|