Primary competition visual

Classification for Landslide Detection by ITU

1 000 CHF
Completed (~1 year ago)
Classification
Earth Observation
Python
GIS
Computer Vision
Machine Learning
Deep Learning
1028 joined
303 active
Starti
17 Apr 25
Closei
04 Aug 25
Reveali
04 Aug 25
Model Performance Tuning: Epochs vs. Thresholds
Help · 30 Jul 2025, 11:51 · 5

how many training epochs does your model typically require to reach an F1 score of 85%, and what threshold value yields the best classification performance?

Discussion 5 answers
User avatar
CodeJoe

Watch @Koleshjr's videos. You can reach 0.85 in just 6 epochs.

Upvotes 1
User avatar

My model reached an F1 score of 0.85 in just 5 epochs, but struggled to improve further beyond that. This rapid early learning suggests that landslide events may have a set of strong, distinguishable features that are easy for the model to pick up. However, the plateau hints at the presence of more subtle or ambiguous cases that are harder to capture. This hypothesis is supported by the optimal threshold I discovered: 0.5. It's unusually high for a problem with significant class imbalance, indicating that the model is relatively confident in its predictions and that true positives are easier to detect than I initially expected.

Upvotes 0
User avatar
CodeJoe

You can reach 90 on a fold. The larger the model the better

Upvotes 0
User avatar

Which model are you using?

Upvotes 0
User avatar

Before switching to the dual-branch EfficientNet architecture, I was using ResNet-18, which gave me my leaderboard score

Upvotes 0