Segresnet algo updates#211
Conversation
|
@mingxin-zheng can you review it please |
|
I have the following error when running the tests/test_algo_templates.py Detail log in a3d.log |
it should be fixed for this test case, but this actually uncovers a bug we need to handle. Different algorithms may return results on different devices (CPU or GPU) , e.g. if algo didn't have enough gpu memory it may do CPU based slidingwindow inference. So than when we do Ensembling, some internal function concatinate the predictions and it fails, since the predictions are on different devices. @mingxin-zheng we should open an issue to track it |
Signed-off-by: am <am>
|
I've updated the branch, please check @mingxin-zheng There is still clean up required for print() statements to transition to loggin, |
|
@myron let's do it in a separate PR, since logging won't affect benchmarking |
### Description The new ALGO_HASH has two updates for better performance of Auto3DSeg algo templates: - Project-MONAI/research-contributions#193 - Project-MONAI/research-contributions#211 ### 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: Mingxin Zheng <[email protected]>
* SegResNet algo update Signed-off-by: am <am> * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --------- Signed-off-by: am <am> Co-authored-by: am <am> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Segresnet algo updates...