We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef55f31 commit 2a0ce12Copy full SHA for 2a0ce12
otx/recipes/stages/segmentation/supcon.py
@@ -1,3 +1,14 @@
1
_base_ = ["./incremental.py"]
2
3
-override_configs = dict(custom_hooks=[dict(type="TwoCropTransformHook", interval=5)])
+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