You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, pytorch-ignite contains various evaluator but lacks a sliding window evaluator.
We looked at the create supervised_evaluator() code and replicate that by replacing the out = model(x) with out = sliding_window_inference(x) and corresponding prepare_batch() function. but It does not work?
The text was updated successfully, but these errors were encountered:
Currently, pytorch-ignite contains various evaluator but lacks a sliding window evaluator.
We looked at the create supervised_evaluator() code and replicate that by replacing the out = model(x) with
out = sliding_window_inference(x) and corresponding prepare_batch() function. but It does not work?
The text was updated successfully, but these errors were encountered: