Skip to content
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

docs: bit misspell comments README #11

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ python predict.py \
--out_nonlinear softmax \
--out_channels 38
```
You would need to combine the predicted segmentation on some organs togethor with ground truth segmentation on other organs to generate pseudo labels for continual learning. Please take scripts in prepare_pseudo_dataset.ipynb as examples.
You would need to combine the predicted segmentation on some organs together with ground truth segmentation on other organs to generate pseudo labels for continual learning. Please take scripts in prepare_pseudo_dataset.ipynb as examples.

## 5. Continual learning
For the proposed model, in continual learning stages, the same train.py is used to train the model but with different settings.
Expand Down
2 changes: 1 addition & 1 deletion continue_ilt.py
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ def process(args):

scheduler = LinearWarmupCosineAnnealingLR(optimizer, warmup_epochs=args.warmup_epoch, max_epochs=args.max_epoch)

# loal old model
# load old model
if args.old_model:
checkpoint = torch.load(args.old_model)
if args.dist:
Expand Down
2 changes: 1 addition & 1 deletion continue_plop.py
Original file line number Diff line number Diff line change
Expand Up @@ -361,7 +361,7 @@ def process(args):

scheduler = LinearWarmupCosineAnnealingLR(optimizer, warmup_epochs=args.warmup_epoch, max_epochs=args.max_epoch)

# loal old model
# load old model
if args.old_model:
checkpoint = torch.load(args.old_model)
if args.dist:
Expand Down