-
Notifications
You must be signed in to change notification settings - Fork 1
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
Reconcile for occupancy model #70
Conversation
Added support for:
This allows the user to specify the threshold of "not training this base model", for the classification and hurdle tasks. In the past, this is hard coded as 1, meaning that the base model is only trained if there is at least 1 sample from a different class. Now users can set it to, e.g., 3, so that a stixel with 100 data points -- 98 0s and two 1s, will not be trained (instead, a dummy model that always predict zero will be used here), and a stixel will 100 data points -- 97 0s and three 1s will be trained. This feature can be useful if you need to do cross-validation at base model level.
The
This can now be realized by passing base_model_prediction_param parameters when you are calling
The Minor changes:
|
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #70 +/- ##
==========================================
+ Coverage 89.91% 90.24% +0.33%
==========================================
Files 34 35 +1
Lines 2508 2594 +86
==========================================
+ Hits 2255 2341 +86
Misses 253 253 ☔ View full report in Codecov by Sentry. 🚨 Try these New Features:
|
No description provided.