katielink commited on
Commit
f89256d
1 Parent(s): 37d80c1

modify dataset key name

Browse files
Files changed (2) hide show
  1. configs/metadata.json +4 -3
  2. configs/train.json +2 -1
configs/metadata.json CHANGED
@@ -1,13 +1,14 @@
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.0",
4
  "changelog": {
 
5
  "0.3.0": "update license files",
6
  "0.2.0": "unify naming",
7
  "0.1.0": "Initial version"
8
  },
9
- "monai_version": "0.9.0",
10
- "pytorch_version": "1.10.2",
11
  "numpy_version": "1.21.2",
12
  "optional_packages_version": {
13
  "nibabel": "3.2.1",
 
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.1",
4
  "changelog": {
5
+ "0.3.1": "modify dataset key name",
6
  "0.3.0": "update license files",
7
  "0.2.0": "unify naming",
8
  "0.1.0": "Initial version"
9
  },
10
+ "monai_version": "1.0.1",
11
+ "pytorch_version": "1.13.0",
12
  "numpy_version": "1.21.2",
13
  "optional_packages_version": {
14
  "nibabel": "3.2.1",
configs/train.json CHANGED
@@ -9,7 +9,8 @@
9
  "val_interval": 1,
10
  "device": "$torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')",
11
  "ckpt_path": "$@bundle_root + '/models/model.pt'",
12
- "dataset_file": "./allimages3label.npz",
 
13
  "network_def": {
14
  "_target_": "UNet",
15
  "spatial_dims": 2,
 
9
  "val_interval": 1,
10
  "device": "$torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')",
11
  "ckpt_path": "$@bundle_root + '/models/model.pt'",
12
+ "dataset_dir": ".",
13
+ "dataset_file": "$@dataset_dir + '/allimages3label.npz'",
14
  "network_def": {
15
  "_target_": "UNet",
16
  "spatial_dims": 2,