katielink commited on
Commit
dd2d6d3
·
1 Parent(s): 439bfe1

add RAM warning

Browse files
Files changed (3) hide show
  1. README.md +5 -0
  2. configs/metadata.json +2 -1
  3. docs/README.md +5 -0
README.md CHANGED
@@ -49,6 +49,11 @@ This model utilized a two-stage approach. The training was performed with the fo
49
  - Optimizer: Adam
50
  - Learning Rate: 1e-4
51
  - Loss: HoVerNetLoss
 
 
 
 
 
52
 
53
  ## Input
54
  Input: RGB images
 
49
  - Optimizer: Adam
50
  - Learning Rate: 1e-4
51
  - Loss: HoVerNetLoss
52
+ - Dataset Manager: CacheDataset
53
+
54
+ ### Memory Consumption Warning
55
+
56
+ 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.
57
 
58
  ## Input
59
  Input: RGB images
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_hovernet_20221124.json",
3
- "version": "0.1.8",
4
  "changelog": {
 
5
  "0.1.8": "Update README for pretrained weights and save metrics in evaluate",
6
  "0.1.7": "Update README Formatting",
7
  "0.1.6": "add non-deterministic note",
 
1
  {
2
  "schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_hovernet_20221124.json",
3
+ "version": "0.1.9",
4
  "changelog": {
5
+ "0.1.9": "add RAM warning",
6
  "0.1.8": "Update README for pretrained weights and save metrics in evaluate",
7
  "0.1.7": "Update README Formatting",
8
  "0.1.6": "add non-deterministic note",
docs/README.md CHANGED
@@ -42,6 +42,11 @@ This model utilized a two-stage approach. The training was performed with the fo
42
  - Optimizer: Adam
43
  - Learning Rate: 1e-4
44
  - Loss: HoVerNetLoss
 
 
 
 
 
45
 
46
  ## Input
47
  Input: RGB images
 
42
  - Optimizer: Adam
43
  - Learning Rate: 1e-4
44
  - Loss: HoVerNetLoss
45
+ - Dataset Manager: CacheDataset
46
+
47
+ ### Memory Consumption Warning
48
+
49
+ 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.
50
 
51
  ## Input
52
  Input: RGB images