-
Notifications
You must be signed in to change notification settings - Fork 8
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
Add TimesFMModel
#544
Add TimesFMModel
#544
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
🚀 Deployed on https://deploy-preview-544--etna-docs.netlify.app |
etna/models/nn/timesfm.py
Outdated
|
||
nan_segment_mask = target_df.isna().any() | ||
if nan_segment_mask.any(): | ||
nan_segments = nan_segment_mask.loc[:, nan_segment_mask].index.get_level_values(0).tolist() |
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.
I think we should do:
nan_segments = nan_segment_mask.loc[:, nan_segment_mask].index.get_level_values("segment").unique().tolist()
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #544 +/- ##
==========================================
- Coverage 90.52% 90.42% -0.10%
==========================================
Files 256 262 +6
Lines 17375 18234 +859
==========================================
+ Hits 15728 16488 +760
- Misses 1647 1746 +99 ☔ View full report in Codecov by Sentry. |
Before submitting (must do checklist)
Proposed Changes
Closing issues
closes #528