add RAM warning
Browse files- README.md +5 -0
- configs/metadata.json +2 -1
- docs/README.md +5 -0
README.md
CHANGED
@@ -34,6 +34,11 @@ The training as performed with the following:
|
|
34 |
- Actual Model Input: 736 x 480 x 3
|
35 |
- Optimizer: Adam
|
36 |
- Learning Rate: 1e-4
|
|
|
|
|
|
|
|
|
|
|
37 |
|
38 |
### Input
|
39 |
A three channel video frame
|
|
|
34 |
- Actual Model Input: 736 x 480 x 3
|
35 |
- Optimizer: Adam
|
36 |
- Learning Rate: 1e-4
|
37 |
+
- Dataset Manager: CacheDataset
|
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 |
A three channel video frame
|
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.5.
|
4 |
"changelog": {
|
|
|
5 |
"0.5.0": "update TensorRT descriptions",
|
6 |
"0.4.9": "update the model weights",
|
7 |
"0.4.8": "update the TensorRT part in the README file",
|
|
|
1 |
{
|
2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
3 |
+
"version": "0.5.1",
|
4 |
"changelog": {
|
5 |
+
"0.5.1": "add RAM warning",
|
6 |
"0.5.0": "update TensorRT descriptions",
|
7 |
"0.4.9": "update the model weights",
|
8 |
"0.4.8": "update the TensorRT part in the README file",
|
docs/README.md
CHANGED
@@ -27,6 +27,11 @@ The training as performed with the following:
|
|
27 |
- Actual Model Input: 736 x 480 x 3
|
28 |
- Optimizer: Adam
|
29 |
- Learning Rate: 1e-4
|
|
|
|
|
|
|
|
|
|
|
30 |
|
31 |
### Input
|
32 |
A three channel video frame
|
|
|
27 |
- Actual Model Input: 736 x 480 x 3
|
28 |
- Optimizer: Adam
|
29 |
- Learning Rate: 1e-4
|
30 |
+
- Dataset Manager: CacheDataset
|
31 |
+
|
32 |
+
### Memory Consumption Warning
|
33 |
+
|
34 |
+
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.
|
35 |
|
36 |
### Input
|
37 |
A three channel video frame
|