monai
medical
katielink commited on
Commit
c715960
·
1 Parent(s): ed523fb

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,14 +1,15 @@
1
  {
2
  "schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220729.json",
3
- "version": "0.4.0",
4
  "changelog": {
 
5
  "0.4.0": "update license files",
6
  "0.3.0": "Update to scripts",
7
  "0.2.0": "Unify naming",
8
  "0.1.0": "Initial version"
9
  },
10
- "monai_version": "1.0.0",
11
- "pytorch_version": "1.10.2",
12
  "numpy_version": "1.21.2",
13
  "optional_packages_version": {},
14
  "task": "Given long axis MR images of the heart, identify valve insertion points through the full cardiac cycle",
 
1
  {
2
  "schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220729.json",
3
+ "version": "0.4.1",
4
  "changelog": {
5
+ "0.4.1": "modify dataset key name",
6
  "0.4.0": "update license files",
7
  "0.3.0": "Update to scripts",
8
  "0.2.0": "Unify naming",
9
  "0.1.0": "Initial version"
10
  },
11
+ "monai_version": "1.0.1",
12
+ "pytorch_version": "1.13.0",
13
  "numpy_version": "1.21.2",
14
  "optional_packages_version": {},
15
  "task": "Given long axis MR images of the heart, identify valve insertion points through the full cardiac cycle",
configs/train.json CHANGED
@@ -16,7 +16,8 @@
16
  "num_substeps": 3,
17
  "learning_rate": 0.0001,
18
  "num_workers": 8,
19
- "dataset_file": "./valvelandmarks.npz",
 
20
  "output_dir": "$datetime.datetime.now().strftime('./results/output_%y%m%d_%H%M%S')",
21
  "network_def": {
22
  "_target_": "scripts.valve_landmarks.PointRegressor",
 
16
  "num_substeps": 3,
17
  "learning_rate": 0.0001,
18
  "num_workers": 8,
19
+ "dataset_dir": ".",
20
+ "dataset_file": "$@dataset_dir + '/valvelandmarks.npz'",
21
  "output_dir": "$datetime.datetime.now().strftime('./results/output_%y%m%d_%H%M%S')",
22
  "network_def": {
23
  "_target_": "scripts.valve_landmarks.PointRegressor",