Skip to content

Commit 2a0ce12

Browse files
Temporary fix override_configs bug (#2187)
* Fix iseg e2e (#2173) * Fix det e2e (#2176) * Fix det e2e * Fix mypy * Fix override_configs bug * Revert * Remove if statements * Apply temporary solution --------- Co-authored-by: Jaeguk Hyun <[email protected]>
1 parent ef55f31 commit 2a0ce12

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed
Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
11
_base_ = ["./incremental.py"]
22

3-
override_configs = dict(custom_hooks=[dict(type="TwoCropTransformHook", interval=5)])
3+
custom_hooks = [
4+
dict(
5+
type="LazyEarlyStoppingHook",
6+
patience=8,
7+
iteration_patience=0,
8+
metric="mDice",
9+
interval=1,
10+
priority=75,
11+
start=1,
12+
),
13+
dict(type="TwoCropTransformHook", interval=5),
14+
]

0 commit comments

Comments
 (0)