add RAM usage with CacheDataset
Browse files- README.md +10 -0
- configs/metadata.json +2 -1
- docs/README.md +10 -0
README.md
CHANGED
@@ -36,6 +36,16 @@ The training as performed with the following:
|
|
36 |
- Optimizer: Adam
|
37 |
- Learning Rate: 2e-4
|
38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
39 |
|
40 |
### Input
|
41 |
1 channel
|
|
|
36 |
- Optimizer: Adam
|
37 |
- Learning Rate: 2e-4
|
38 |
|
39 |
+
### Memory Consumption
|
40 |
+
|
41 |
+
- Dataset Manager: CacheDataset
|
42 |
+
- Data Size: 30 samples
|
43 |
+
- Cache Rate: 1.0
|
44 |
+
- Single GPU - System RAM Usage: 5.8G
|
45 |
+
|
46 |
+
### Memory Consumption Warning
|
47 |
+
|
48 |
+
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.
|
49 |
|
50 |
### Input
|
51 |
1 channel
|
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.4.
|
4 |
"changelog": {
|
|
|
5 |
"0.4.7": "deterministic retrain benchmark",
|
6 |
"0.4.6": "fix mgpu finalize issue",
|
7 |
"0.4.5": "enable deterministic training",
|
|
|
1 |
{
|
2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
3 |
+
"version": "0.4.8",
|
4 |
"changelog": {
|
5 |
+
"0.4.8": "add RAM usage with CacheDataset",
|
6 |
"0.4.7": "deterministic retrain benchmark",
|
7 |
"0.4.6": "fix mgpu finalize issue",
|
8 |
"0.4.5": "enable deterministic training",
|
docs/README.md
CHANGED
@@ -29,6 +29,16 @@ The training as performed with the following:
|
|
29 |
- Optimizer: Adam
|
30 |
- Learning Rate: 2e-4
|
31 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
32 |
|
33 |
### Input
|
34 |
1 channel
|
|
|
29 |
- Optimizer: Adam
|
30 |
- Learning Rate: 2e-4
|
31 |
|
32 |
+
### Memory Consumption
|
33 |
+
|
34 |
+
- Dataset Manager: CacheDataset
|
35 |
+
- Data Size: 30 samples
|
36 |
+
- Cache Rate: 1.0
|
37 |
+
- Single GPU - System RAM Usage: 5.8G
|
38 |
+
|
39 |
+
### Memory Consumption Warning
|
40 |
+
|
41 |
+
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.
|
42 |
|
43 |
### Input
|
44 |
1 channel
|