remove error dollar symbol in readme
Browse files- README.md +7 -1
- configs/metadata.json +3 -2
- docs/README.md +7 -1
README.md
CHANGED
@@ -92,7 +92,7 @@ The training was performed with the following:
|
|
92 |
|
93 |
### Memory Consumption Warning
|
94 |
|
95 |
-
If you face memory issues with CacheDataset, you can either switch to a regular Dataset class or lower the caching rate `cache_rate` in the configurations within range
|
96 |
|
97 |
## Input
|
98 |
4 channels
|
@@ -157,6 +157,12 @@ For more details usage instructions, visit the [MONAI Bundle Configuration Page]
|
|
157 |
python -m monai.bundle run --config_file configs/train.json
|
158 |
```
|
159 |
|
|
|
|
|
|
|
|
|
|
|
|
|
160 |
#### Override the `train` config to execute multi-GPU training:
|
161 |
|
162 |
```
|
|
|
92 |
|
93 |
### Memory Consumption Warning
|
94 |
|
95 |
+
If you face memory issues with CacheDataset, you can either switch to a regular Dataset class or lower the caching rate `cache_rate` in the configurations within range [0, 1] to minimize the System RAM requirements.
|
96 |
|
97 |
## Input
|
98 |
4 channels
|
|
|
157 |
python -m monai.bundle run --config_file configs/train.json
|
158 |
```
|
159 |
|
160 |
+
Please note that if the default dataset path is not modified with the actual path in the bundle config files, you can also override it by using `--dataset_dir`:
|
161 |
+
|
162 |
+
```
|
163 |
+
python -m monai.bundle run --config_file configs/train.json --dataset_dir <actual dataset path>
|
164 |
+
```
|
165 |
+
|
166 |
#### Override the `train` config to execute multi-GPU training:
|
167 |
|
168 |
```
|
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.1.
|
4 |
"changelog": {
|
|
|
5 |
"0.1.2": "add RAM warning",
|
6 |
"0.1.1": "enable deterministic eval and inference",
|
7 |
"0.1.0": "Update deterministic results",
|
@@ -15,7 +16,7 @@
|
|
15 |
"0.0.2": "Update The Torch Vision Transform",
|
16 |
"0.0.1": "initialize the model package structure"
|
17 |
},
|
18 |
-
"monai_version": "1.2.
|
19 |
"pytorch_version": "1.13.1",
|
20 |
"numpy_version": "1.22.2",
|
21 |
"optional_packages_version": {
|
|
|
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.3",
|
4 |
"changelog": {
|
5 |
+
"0.1.3": "remove error dollar symbol in readme",
|
6 |
"0.1.2": "add RAM warning",
|
7 |
"0.1.1": "enable deterministic eval and inference",
|
8 |
"0.1.0": "Update deterministic results",
|
|
|
16 |
"0.0.2": "Update The Torch Vision Transform",
|
17 |
"0.0.1": "initialize the model package structure"
|
18 |
},
|
19 |
+
"monai_version": "1.2.0rc6",
|
20 |
"pytorch_version": "1.13.1",
|
21 |
"numpy_version": "1.22.2",
|
22 |
"optional_packages_version": {
|
docs/README.md
CHANGED
@@ -85,7 +85,7 @@ The training was performed with the following:
|
|
85 |
|
86 |
### Memory Consumption Warning
|
87 |
|
88 |
-
If you face memory issues with CacheDataset, you can either switch to a regular Dataset class or lower the caching rate `cache_rate` in the configurations within range
|
89 |
|
90 |
## Input
|
91 |
4 channels
|
@@ -150,6 +150,12 @@ For more details usage instructions, visit the [MONAI Bundle Configuration Page]
|
|
150 |
python -m monai.bundle run --config_file configs/train.json
|
151 |
```
|
152 |
|
|
|
|
|
|
|
|
|
|
|
|
|
153 |
#### Override the `train` config to execute multi-GPU training:
|
154 |
|
155 |
```
|
|
|
85 |
|
86 |
### Memory Consumption Warning
|
87 |
|
88 |
+
If you face memory issues with CacheDataset, you can either switch to a regular Dataset class or lower the caching rate `cache_rate` in the configurations within range [0, 1] to minimize the System RAM requirements.
|
89 |
|
90 |
## Input
|
91 |
4 channels
|
|
|
150 |
python -m monai.bundle run --config_file configs/train.json
|
151 |
```
|
152 |
|
153 |
+
Please note that if the default dataset path is not modified with the actual path in the bundle config files, you can also override it by using `--dataset_dir`:
|
154 |
+
|
155 |
+
```
|
156 |
+
python -m monai.bundle run --config_file configs/train.json --dataset_dir <actual dataset path>
|
157 |
+
```
|
158 |
+
|
159 |
#### Override the `train` config to execute multi-GPU training:
|
160 |
|
161 |
```
|