add cpu ram requirement in readme
Browse files- README.md +12 -1
- configs/metadata.json +2 -1
- docs/README.md +12 -1
README.md
CHANGED
|
@@ -46,7 +46,6 @@ The training was performed with the following:
|
|
| 46 |
- Optimizer: SGD
|
| 47 |
- (Initial) Learning Rate: 0.025
|
| 48 |
- Loss: DiceCELoss
|
| 49 |
-
- Note: If out-of-memory or program crash occurs while caching the data set, please change the cache\_rate in CacheDataset to a lower value in the range (0, 1).
|
| 50 |
|
| 51 |
The segmentation of pancreas region is formulated as the voxel-wise 3-class classification. Each voxel is predicted as either foreground (pancreas body, tumour) or background. And the model is optimized with gradient descent method minimizing soft dice loss and cross-entropy loss between the predicted mask and ground truth segmentation.
|
| 52 |
|
|
@@ -60,6 +59,17 @@ Three channels
|
|
| 60 |
- Label 1: pancreas
|
| 61 |
- Label 0: everything else
|
| 62 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 63 |
## Performance
|
| 64 |
Dice score is used for evaluating the performance of the model. This model achieves a mean dice score of 0.62.
|
| 65 |
|
|
@@ -129,6 +139,7 @@ python -m monai.bundle ckpt_export network_def --filepath models/model.ts --ckpt
|
|
| 129 |
```
|
| 130 |
|
| 131 |
# References
|
|
|
|
| 132 |
[1] He, Y., Yang, D., Roth, H., Zhao, C. and Xu, D., 2021. Dints: Differentiable neural network topology search for 3d medical image segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (pp. 5841-5850).
|
| 133 |
|
| 134 |
# License
|
|
|
|
| 46 |
- Optimizer: SGD
|
| 47 |
- (Initial) Learning Rate: 0.025
|
| 48 |
- Loss: DiceCELoss
|
|
|
|
| 49 |
|
| 50 |
The segmentation of pancreas region is formulated as the voxel-wise 3-class classification. Each voxel is predicted as either foreground (pancreas body, tumour) or background. And the model is optimized with gradient descent method minimizing soft dice loss and cross-entropy loss between the predicted mask and ground truth segmentation.
|
| 51 |
|
|
|
|
| 59 |
- Label 1: pancreas
|
| 60 |
- Label 0: everything else
|
| 61 |
|
| 62 |
+
### Memory Consumption
|
| 63 |
+
|
| 64 |
+
- Dataset Manager: CacheDataset
|
| 65 |
+
- Data Size: 420 3D Volumes
|
| 66 |
+
- Cache Rate: 1.0
|
| 67 |
+
- Multi GPU (8 GPUs) - System RAM Usage: 400G
|
| 68 |
+
|
| 69 |
+
### Memory Consumption Warning
|
| 70 |
+
|
| 71 |
+
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.
|
| 72 |
+
|
| 73 |
## Performance
|
| 74 |
Dice score is used for evaluating the performance of the model. This model achieves a mean dice score of 0.62.
|
| 75 |
|
|
|
|
| 139 |
```
|
| 140 |
|
| 141 |
# References
|
| 142 |
+
|
| 143 |
[1] He, Y., Yang, D., Roth, H., Zhao, C. and Xu, D., 2021. Dints: Differentiable neural network topology search for 3d medical image segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (pp. 5841-5850).
|
| 144 |
|
| 145 |
# License
|
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.3.
|
| 4 |
"changelog": {
|
|
|
|
| 5 |
"0.3.8": "add non-deterministic note",
|
| 6 |
"0.3.7": "re-train model with updated dints implementation",
|
| 7 |
"0.3.6": "black autofix format and add name tag",
|
|
|
|
| 1 |
{
|
| 2 |
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20220324.json",
|
| 3 |
+
"version": "0.3.9",
|
| 4 |
"changelog": {
|
| 5 |
+
"0.3.9": "add cpu ram requirement in readme",
|
| 6 |
"0.3.8": "add non-deterministic note",
|
| 7 |
"0.3.7": "re-train model with updated dints implementation",
|
| 8 |
"0.3.6": "black autofix format and add name tag",
|
docs/README.md
CHANGED
|
@@ -39,7 +39,6 @@ The training was performed with the following:
|
|
| 39 |
- Optimizer: SGD
|
| 40 |
- (Initial) Learning Rate: 0.025
|
| 41 |
- Loss: DiceCELoss
|
| 42 |
-
- Note: If out-of-memory or program crash occurs while caching the data set, please change the cache\_rate in CacheDataset to a lower value in the range (0, 1).
|
| 43 |
|
| 44 |
The segmentation of pancreas region is formulated as the voxel-wise 3-class classification. Each voxel is predicted as either foreground (pancreas body, tumour) or background. And the model is optimized with gradient descent method minimizing soft dice loss and cross-entropy loss between the predicted mask and ground truth segmentation.
|
| 45 |
|
|
@@ -53,6 +52,17 @@ Three channels
|
|
| 53 |
- Label 1: pancreas
|
| 54 |
- Label 0: everything else
|
| 55 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 56 |
## Performance
|
| 57 |
Dice score is used for evaluating the performance of the model. This model achieves a mean dice score of 0.62.
|
| 58 |
|
|
@@ -122,6 +132,7 @@ python -m monai.bundle ckpt_export network_def --filepath models/model.ts --ckpt
|
|
| 122 |
```
|
| 123 |
|
| 124 |
# References
|
|
|
|
| 125 |
[1] He, Y., Yang, D., Roth, H., Zhao, C. and Xu, D., 2021. Dints: Differentiable neural network topology search for 3d medical image segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (pp. 5841-5850).
|
| 126 |
|
| 127 |
# License
|
|
|
|
| 39 |
- Optimizer: SGD
|
| 40 |
- (Initial) Learning Rate: 0.025
|
| 41 |
- Loss: DiceCELoss
|
|
|
|
| 42 |
|
| 43 |
The segmentation of pancreas region is formulated as the voxel-wise 3-class classification. Each voxel is predicted as either foreground (pancreas body, tumour) or background. And the model is optimized with gradient descent method minimizing soft dice loss and cross-entropy loss between the predicted mask and ground truth segmentation.
|
| 44 |
|
|
|
|
| 52 |
- Label 1: pancreas
|
| 53 |
- Label 0: everything else
|
| 54 |
|
| 55 |
+
### Memory Consumption
|
| 56 |
+
|
| 57 |
+
- Dataset Manager: CacheDataset
|
| 58 |
+
- Data Size: 420 3D Volumes
|
| 59 |
+
- Cache Rate: 1.0
|
| 60 |
+
- Multi GPU (8 GPUs) - System RAM Usage: 400G
|
| 61 |
+
|
| 62 |
+
### Memory Consumption Warning
|
| 63 |
+
|
| 64 |
+
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.
|
| 65 |
+
|
| 66 |
## Performance
|
| 67 |
Dice score is used for evaluating the performance of the model. This model achieves a mean dice score of 0.62.
|
| 68 |
|
|
|
|
| 132 |
```
|
| 133 |
|
| 134 |
# References
|
| 135 |
+
|
| 136 |
[1] He, Y., Yang, D., Roth, H., Zhao, C. and Xu, D., 2021. Dints: Differentiable neural network topology search for 3d medical image segmentation. In Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (pp. 5841-5850).
|
| 137 |
|
| 138 |
# License
|