-
Notifications
You must be signed in to change notification settings - Fork 5
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
chore: Add thesis plotting tools #624
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #624 +/- ##
==========================================
- Coverage 85.61% 85.58% -0.04%
==========================================
Files 258 258
Lines 11334 11349 +15
==========================================
+ Hits 9704 9713 +9
- Misses 1630 1636 +6 ☔ View full report in Codecov by Sentry. |
" evaluation_center = (eval_request.interval_start + eval_request.interval_end) / 2\n", | ||
"\n", | ||
" eval_request.currently_active_model = (\n", | ||
" evaluation_center - offset\n", | ||
" <= model_row.iloc[0][\"train_end\"].to_pydatetime().timestamp()\n", | ||
" <= evaluation_center\n", | ||
" )\n", | ||
"\n", | ||
" # training_center = (\n", | ||
" # model_row.iloc[0][\"train_start\"].to_pydatetime().timestamp()\n", | ||
" # + model_row.iloc[0][\"train_end\"].to_pydatetime().timestamp()\n", | ||
" # ) / 2\n", | ||
" # eval_request.currently_active_model = eval_request.currently_trained_model\n", | ||
" # eval_request.currently_trained_model = (\n", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you remember what the changes in this file are for?
WIP