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 8dc5a4c commit cf7d738Copy full SHA for cf7d738
scripts/la-vision/train_sgn_detection.py
@@ -52,7 +52,7 @@ def get_paths(split):
52
53
def train():
54
55
- model_name = "sgn-low-res-detection-v5"
+ model_name = "sgn-low-res-detection-v6"
56
57
train_paths, train_label_paths = get_paths("train")
58
val_paths, val_label_paths = get_paths("val")
@@ -78,6 +78,10 @@ def train():
78
f, indent=2, sort_keys=True
79
)
80
81
+ # For marmoset model
82
+ sigma = (0.6, 3, 3)
83
+ # For mouse model
84
+ # sigma = (1, 4, 4)
85
supervised_training(
86
name=model_name,
87
train_paths=train_paths,
@@ -92,7 +96,7 @@ def train():
92
96
out_channels=1,
93
97
augmentations=None,
94
98
eps=1e-5,
95
- sigma=(1, 4, 4),
99
+ sigma=sigma,
100
lower_bound=None,
101
upper_bound=None,
102
test_paths=test_paths,
0 commit comments