Skip to content

Commit 575954c

Browse files
authored
Algo template updates, doc fixes (#6581)
### Description algo template updates - swin Project-MONAI/research-contributions@c239979 - dints Project-MONAI/research-contributions@9db946d fixes #6553 ### Types of changes <!--- Put an `x` in all the boxes that apply, and remove the not applicable items --> - [x] Non-breaking change (fix or new feature that would not break existing functionality). - [ ] Breaking change (fix or new feature that would cause existing functionality to change). - [ ] New tests added to cover the changes. - [ ] Integration tests passed locally by running `./runtests.sh -f -u --net --coverage`. - [ ] Quick tests passed locally by running `./runtests.sh --quick --unittests --disttests`. - [ ] In-line docstrings updated. - [ ] Documentation updated, tested `make html` command in the `docs/` folder. --------- Signed-off-by: Wenqi Li <[email protected]>
1 parent 30915ad commit 575954c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Diff for: monai/apps/auto3dseg/bundle_gen.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
from monai.utils.enums import AlgoKeys
3838

3939
logger = get_logger(module_name=__name__)
40-
ALGO_HASH = os.environ.get("MONAI_ALGO_HASH", "58af562")
40+
ALGO_HASH = os.environ.get("MONAI_ALGO_HASH", "9db946d")
4141

4242
__all__ = ["BundleAlgo", "BundleGen"]
4343

Diff for: monai/data/dataset.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -941,7 +941,7 @@ class SmartCacheDataset(Randomizable, CacheDataset):
941941
Let N be the configured number of objects in cache; and R be the number of replacement objects (R = ceil(N * r),
942942
where r is the configured replace rate).
943943
For more details, please refer to:
944-
https://docs.nvidia.com/clara/tlt-mi/clara-train-sdk-v3.0/nvmidl/additional_features/smart_cache.html#smart-cache
944+
https://docs.nvidia.com/clara/clara-train-archive/3.1/nvmidl/additional_features/smart_cache.html
945945
If passing slicing indices, will return a PyTorch Subset, for example: `data: Subset = dataset[1:4]`,
946946
for more details, please check: https://pytorch.org/docs/stable/data.html#torch.utils.data.Subset
947947

0 commit comments

Comments
 (0)