Skip to content

remove deprecated mentioning #736

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
- Wrap the model with `DistributedDataParallel` after moving to expected device.
- Put model file on every node, then load and map to expected GPU device in every process.
- Wrap Dataset with `DistributedSampler`, disable the `shuffle` in sampler and DataLoader.
- Add `StatsHandler` and `SegmentationSaver` to the master process which is `dist.get_rank() == 0`.
- Add `StatsHandler` to the master process which is `dist.get_rank() == 0`.
- ignite can automatically reduce metrics for distributed evaluation, refer to:
https://github.com/pytorch/ignite/blob/v0.4.2/ignite/metrics/metric.py#L507

Expand Down
2 changes: 1 addition & 1 deletion modules/dynunet_pipeline/evaluator.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class DynUNetEvaluator(SupervisedEvaluator):
checkpoint into files.
additional_metrics: more Ignite metrics that also attach to Ignite Engine.
val_handlers: every handler is a set of Ignite Event-Handlers, must have `attach` function, like:
CheckpointHandler, StatsHandler, SegmentationSaver, etc.
CheckpointHandler, StatsHandler, etc.
amp: whether to enable auto-mixed-precision evaluation, default is False.
tta_val: whether to do the 8 flips (8 = 2 ** 3, where 3 represents the three dimensions)
test time augmentation, default is False.
Expand Down