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

Fix OOM issue in vista3d bundle and update readme #657

Merged
merged 20 commits into from
Sep 23, 2024
Merged
Show file tree
Hide file tree
Changes from 13 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
3 changes: 2 additions & 1 deletion models/vista3d/configs/metadata.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"schema": "https://github.com/Project-MONAI/MONAI-extra-test-data/releases/download/0.8.1/meta_schema_20240725.json",
"version": "0.4.8",
"version": "0.4.9",
"changelog": {
"0.4.9": "fix oom issue and update readme",
"0.4.8": "use 0.3 overlap for inference",
"0.4.7": "update tensorrt benchmark results",
"0.4.6": "add tensorrt benchmark result and remove the metric part",
Expand Down
2 changes: 1 addition & 1 deletion models/vista3d/configs/train.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"early_stop": false,
"fold": 0,
"device": "$torch.device('cuda:0' if torch.cuda.is_available() else 'cpu')",
"epochs": 100,
"epochs": 5,
"val_interval": 1,
"val_at_start": false,
"sw_overlap": 0.625,
Expand Down
2 changes: 1 addition & 1 deletion models/vista3d/configs/train_continual.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"num_classes": 255,
"output_classes": "$len(@label_set)",
"optimizer": {
"_target_": "Novograd",
"_target_": "torch.optim.AdamW",
"lr": "@learning_rate",
"params": "[email protected]()"
},
Expand Down
Loading
Loading