-
Notifications
You must be signed in to change notification settings - Fork 321
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
[Ax] DataLoaderConfig
- Only load last observation of map data by default
#3403
base: main
Are you sure you want to change the base?
Conversation
This pull request was exported from Phabricator. Differential Revision: D69992533 |
Summary: This commit ensures that the `Adapter` only loads a single observation by default, even for map metrics. This makes sure that any method (not-necessarily map-data aware) can be applied by default. Reviewed By: saitcakmak Differential Revision: D69992533
a78451e
to
86d3f87
Compare
This pull request was exported from Phabricator. Differential Revision: D69992533 |
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3403 +/- ##
=======================================
Coverage 95.99% 96.00%
=======================================
Files 539 539
Lines 52874 52903 +29
=======================================
+ Hits 50757 50787 +30
+ Misses 2117 2116 -1 ☔ View full report in Codecov by Sentry. |
This pull request was exported from Phabricator. Differential Revision: D69992533 |
Summary: Pull Request resolved: facebook#3403 This commit ensures that the `Adapter` only loads a single observation by default, even for map metrics. This makes sure that any method (not-necessarily map-data aware) can be applied by default. Reviewed By: saitcakmak Differential Revision: D69992533
96ef4e4
to
dc70d8d
Compare
facebook#3403) Summary: The original purpose of this commit was to ensure that the `Adapter` only loads a single observation by default, even for running and completed map metrics. This makes sure that any method (not-necessarily map-data aware) can be applied by default. To this end, we need control of the `latest_rows_per_group` of `observations_from_data`. In order to avoid increasing the number of arguments to the adapter, we package the new argument and other parameters controlling what data the model is fit to in a new `DataLoaderConfig` dataclass. Reviewed By: saitcakmak Differential Revision: D69992533
This pull request was exported from Phabricator. Differential Revision: D69992533 |
facebook#3403) Summary: The original purpose of this commit was to ensure that the `Adapter` only loads a single observation by default, even for running and completed map metrics. This makes sure that any method (not-necessarily map-data aware) can be applied by default. To this end, we need control of the `latest_rows_per_group` of `observations_from_data`. In order to avoid increasing the number of arguments to the adapter, we package the new argument and other parameters controlling what data the model is fit to in a new `DataLoaderConfig` dataclass. Reviewed By: saitcakmak Differential Revision: D69992533
dc70d8d
to
92bf8e0
Compare
This pull request was exported from Phabricator. Differential Revision: D69992533 |
DataLoaderConfig
- Only load last observation of map data by default
facebook#3403) Summary: The original purpose of this commit was to ensure that the `Adapter` only loads a single observation by default, even for running and completed map metrics. This makes sure that any method (not-necessarily map-data aware) can be applied by default. To this end, we need control of the `latest_rows_per_group` of `observations_from_data`. In order to avoid increasing the number of arguments to the adapter, we package the new argument and other parameters controlling what data the model is fit to in a new `DataLoaderConfig` dataclass. Reviewed By: saitcakmak Differential Revision: D69992533
92bf8e0
to
1db600c
Compare
This pull request was exported from Phabricator. Differential Revision: D69992533 |
facebook#3403) Summary: The original purpose of this commit was to ensure that the `Adapter` only loads a single observation by default, even for running and completed map metrics. This makes sure that any method (not-necessarily map-data aware) can be applied by default. To this end, we need control of the `latest_rows_per_group` of `observations_from_data`. In order to avoid increasing the number of arguments to the adapter, we package the new argument and other parameters controlling what data the model is fit to in a new `DataLoaderConfig` dataclass. Reviewed By: saitcakmak Differential Revision: D69992533
1db600c
to
fad0301
Compare
This pull request was exported from Phabricator. Differential Revision: D69992533 |
Summary: This commit ensures that the
Adapter
only loads a single observation by default, even for map metrics. This makes sure that any method (not-necessarily map-data aware) can be applied by default.Differential Revision: D69992533