Closed saitcakmak closed 1 month ago
This pull request was exported from Phabricator. Differential Revision: D64911436
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 99.98%. Comparing base (
e7539db
) to head (78887bc
). Report is 1 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
This pull request has been merged in pytorch/botorch@9d37e905639e0d4983e52ce425306b8161760ee4.
Summary: Previously, this would fallback to
SupervisedDataset.__eq__
, which usesself.X
for comparison. If the underlying datasets have heterogeneous feature sets,self.X
errors out.The new
MultiTaskDataset.__eq__
resolves this issue by comparing the underlying datasets one by one.Differential Revision: D64911436