-
Notifications
You must be signed in to change notification settings - Fork 312
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
Don't call dataset.X in input transform constructors #1993
Conversation
This pull request was exported from Phabricator. Differential Revision: D51362512 |
Summary: `dataset.X` will error out if using a `MultiTaskDataset` with heterogeneous feature sets. Updated the code to extract `d` from `feature_names` instead. For Warp input constructor, removed the `batch_shape` argument. In Ax, we don't have batched inputs for models, so this would never get used. Differential Revision: D51362512
Codecov ReportAttention:
Additional details and impacted files@@ Coverage Diff @@
## main #1993 +/- ##
=======================================
Coverage 94.48% 94.49%
=======================================
Files 460 460
Lines 44022 44023 +1
=======================================
+ Hits 41594 41598 +4
+ Misses 2428 2425 -3 ☔ View full report in Codecov by Sentry. |
Summary: `dataset.X` will error out if using a `MultiTaskDataset` with heterogeneous feature sets. Updated the code to extract `d` from `feature_names` instead. For Warp input constructor, removed the `batch_shape` argument. In Ax, we don't have batched inputs for models, so this would never get used. Differential Revision: D51362512
Summary: `dataset.X` will error out if using a `MultiTaskDataset` with heterogeneous feature sets. Updated the code to extract `d` from `feature_names` instead. For Warp input constructor, removed the `batch_shape` argument. In Ax, we don't have batched inputs for models, so this would never get used. Differential Revision: D51362512
afd6b87
to
ffcdd12
Compare
This pull request was exported from Phabricator. Differential Revision: D51362512 |
Summary: `dataset.X` will error out if using a `MultiTaskDataset` with heterogeneous feature sets. Updated the code to extract `d` from `feature_names` instead. For Warp input constructor, removed the `batch_shape` argument. In Ax, we don't have batched inputs for models, so this would never get used. Differential Revision: D51362512
Summary: Fixes: https://pxl.cl/3PLWk Differential Revision: D51404881
Summary: `dataset.X` will error out if using a `MultiTaskDataset` with heterogeneous feature sets. Updated the code to extract `d` from `feature_names` instead. For Warp input constructor, removed the `batch_shape` argument. In Ax, we don't have batched inputs for models, so this would never get used. Differential Revision: D51362512
ffcdd12
to
ac71fa5
Compare
This pull request was exported from Phabricator. Differential Revision: D51362512 |
Summary: `dataset.X` will error out if using a `MultiTaskDataset` with heterogeneous feature sets. Updated the code to extract `d` from `feature_names` instead. For Warp input constructor, removed the `batch_shape` argument. In Ax, we don't have batched inputs for models, so this would never get used. Differential Revision: D51362512
This pull request has been merged in 1fe5d57. |
Summary:
dataset.X
will error out if using aMultiTaskDataset
with heterogeneous feature sets. Updated the code to extractd
fromfeature_names
instead.For Warp input constructor, removed the
batch_shape
argument. In Ax, we don't have batched inputs for models, so this would never get used.Differential Revision: D51362512