-
Notifications
You must be signed in to change notification settings - Fork 449
feat: Adds the temporal fusion transformer (TFT) forecasting job #1654
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
Changes from all commits
b19d2c4
eb0b09c
a2b563c
189bc00
9426f23
dbb6e5a
7e8fdcb
f2279f5
3618cc9
5a82386
208d9b0
24036dd
1795097
90d3419
b3e0849
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -40,9 +40,10 @@ class TestEndToEndForecasting(e2e_base.TestEndToEnd): | |
| "training_job", | ||
| [ | ||
| training_jobs.AutoMLForecastingTrainingJob, | ||
| training_jobs.SequenceToSequencePlusForecastingTrainingJob, | ||
| pytest.param( | ||
| training_jobs.SequenceToSequencePlusForecastingTrainingJob, | ||
| marks=pytest.mark.skip(reason="Seq2Seq not yet released."), | ||
| training_jobs.TemporalFusionTransformerForecastingTrainingJob, | ||
| marks=pytest.mark.skip(reason="TFT not yet released."), | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. When will TFT be released? We should hold merging until it is released.
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The backend is ready, we are just waiting for documentation and some UI pieces. It's completely usable though. My TL suggested we merge it ahead of time with the understanding that customers can use it, just without the GA guarantees at launch time (~1 month out). What do you think? |
||
| ), | ||
| ], | ||
| ) | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.