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 rtdetr recipes #4079

Merged
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ All notable changes to this project will be documented in this file.
(<https://github.com/openvinotoolkit/training_extensions/pull/4057>)
- Fix incorrect all_groups order configuration in HLabelInfo
(<https://github.com/openvinotoolkit/training_extensions/pull/4067>)
- Fix RTDETR recipes
(<https://github.com/openvinotoolkit/training_extensions/pull/4079>)
- Fix wrong model name in converter & template
(<https://github.com/openvinotoolkit/training_extensions/pull/4082>)

Expand Down
6 changes: 0 additions & 6 deletions src/otx/recipe/detection/rtdetr_101.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,9 @@ overrides:
- class_path: otx.algo.callbacks.adaptive_train_scheduling.AdaptiveTrainScheduling
init_args:
max_interval: 1
decay: -0.025
min_lrschedule_patience: 3
- class_path: otx.algo.callbacks.adaptive_early_stopping.EarlyStoppingWithWarmup
init_args:
monitor: null
mode: max
patience: 10
check_on_train_epoch_end: false
min_delta: 0.001
warmup_iters: 100
warmup_epochs: 7

Expand Down
6 changes: 0 additions & 6 deletions src/otx/recipe/detection/rtdetr_101_tile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,9 @@ overrides:
- class_path: otx.algo.callbacks.adaptive_train_scheduling.AdaptiveTrainScheduling
init_args:
max_interval: 1
decay: -0.025
min_lrschedule_patience: 3
- class_path: otx.algo.callbacks.adaptive_early_stopping.EarlyStoppingWithWarmup
init_args:
monitor: null
mode: max
patience: 10
check_on_train_epoch_end: false
min_delta: 0.001
warmup_iters: 100
warmup_epochs: 7

Expand Down
6 changes: 0 additions & 6 deletions src/otx/recipe/detection/rtdetr_18.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,9 @@ overrides:
- class_path: otx.algo.callbacks.adaptive_train_scheduling.AdaptiveTrainScheduling
init_args:
max_interval: 1
decay: -0.025
min_lrschedule_patience: 3
- class_path: otx.algo.callbacks.adaptive_early_stopping.EarlyStoppingWithWarmup
init_args:
monitor: null
mode: max
patience: 10
check_on_train_epoch_end: false
min_delta: 0.001
warmup_iters: 100
warmup_epochs: 7

Expand Down
6 changes: 0 additions & 6 deletions src/otx/recipe/detection/rtdetr_18_tile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,15 +33,9 @@ overrides:
- class_path: otx.algo.callbacks.adaptive_train_scheduling.AdaptiveTrainScheduling
init_args:
max_interval: 1
decay: -0.025
min_lrschedule_patience: 3
- class_path: otx.algo.callbacks.adaptive_early_stopping.EarlyStoppingWithWarmup
init_args:
monitor: null
mode: max
patience: 10
check_on_train_epoch_end: false
min_delta: 0.001
warmup_iters: 100
warmup_epochs: 7

Expand Down
6 changes: 0 additions & 6 deletions src/otx/recipe/detection/rtdetr_50.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,9 @@ overrides:
- class_path: otx.algo.callbacks.adaptive_train_scheduling.AdaptiveTrainScheduling
init_args:
max_interval: 1
decay: -0.025
min_lrschedule_patience: 3
- class_path: otx.algo.callbacks.adaptive_early_stopping.EarlyStoppingWithWarmup
init_args:
monitor: null
mode: max
patience: 10
check_on_train_epoch_end: false
min_delta: 0.001
warmup_iters: 100
warmup_epochs: 7

Expand Down
6 changes: 0 additions & 6 deletions src/otx/recipe/detection/rtdetr_50_tile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,9 @@ overrides:
- class_path: otx.algo.callbacks.adaptive_train_scheduling.AdaptiveTrainScheduling
init_args:
max_interval: 1
decay: -0.025
min_lrschedule_patience: 3
- class_path: otx.algo.callbacks.adaptive_early_stopping.EarlyStoppingWithWarmup
init_args:
monitor: null
mode: max
patience: 10
check_on_train_epoch_end: false
min_delta: 0.001
warmup_iters: 100
warmup_epochs: 7

Expand Down
Loading