Fix #606: numerical correctness assertions for Combine.stack/take tests + optimize Combine.stack()#607
Closed
Fix #606: numerical correctness assertions for Combine.stack/take tests + optimize Combine.stack()#607
Conversation
|
|
…e Combine.stack() Co-authored-by: nasaul <17485259+nasaul@users.noreply.github.com> Agent-Logs-Url: https://github.com/Nixtla/mlforecast/sessions/ceddc4d3-bc72-42d3-b400-94007b2b4cd0
Copilot
AI
changed the title
[WIP] Fix issues described in GitHub issue #606
Fix #606: numerical correctness assertions for Combine.stack/take tests + optimize Combine.stack()
Mar 25, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Follow-up from #579 review. Two test gaps and one efficiency issue in
Combine.Test coverage gaps addressed:
test_combine_stack— now splits the grouped array into two real partitions, fits transforms on each independently, stacks them, and assertsnp.testing.assert_allclose(stacked.update(full_ga), concat([u1, u2]))to verify numerical correctness rather than just structure.test_nested_combine_take— now builds asubset_gafor the selected indices, fits a fresh transform on it, and asserts thetake()-derived transform produces bit-identicalupdate()output to the freshly-fitted one.Efficiency fix:
Combine.stack()previouslydeepcopy(transforms[0])and then immediately overwroteout.tfm1/out.tfm2— wasting the deep copy of those attributes. Fixed by creating a shallow stub withtfm1/tfm2nullified beforedeepcopy, leaving the input object unmutated:Checklist:
Original prompt
This pull request was created from Copilot chat.
💬 Send tasks to Copilot coding agent from Slack and Teams to turn conversations into code. Copilot posts an update in your thread when it's finished.