add RAM warning
Browse files- README.md +5 -0
- configs/metadata.json +2 -1
- docs/README.md +5 -0
README.md
CHANGED
@@ -88,6 +88,11 @@ The training was performed with the following:
|
|
88 |
- Optimizer: Adam
|
89 |
- Learning Rate: 1e-4
|
90 |
- Loss: torch.nn.CrossEntropyLoss
|
|
|
|
|
|
|
|
|
|
|
91 |
|
92 |
## Input
|
93 |
4 channels
|
|
|
88 |
- Optimizer: Adam
|
89 |
- Learning Rate: 1e-4
|
90 |
- Loss: torch.nn.CrossEntropyLoss
|
91 |
+
- Dataset Manager: CacheDataset
|
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
|
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.1": "enable deterministic eval and inference",
|
6 |
"0.1.0": "Update deterministic results",
|
7 |
"0.0.9": "Update README Formatting",
|
|
|
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.2",
|
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",
|
8 |
"0.0.9": "Update README Formatting",
|
docs/README.md
CHANGED
@@ -81,6 +81,11 @@ The training was performed with the following:
|
|
81 |
- Optimizer: Adam
|
82 |
- Learning Rate: 1e-4
|
83 |
- Loss: torch.nn.CrossEntropyLoss
|
|
|
|
|
|
|
|
|
|
|
84 |
|
85 |
## Input
|
86 |
4 channels
|
|
|
81 |
- Optimizer: Adam
|
82 |
- Learning Rate: 1e-4
|
83 |
- Loss: torch.nn.CrossEntropyLoss
|
84 |
+
- Dataset Manager: CacheDataset
|
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
|