Propagate suggested_experiment_status from GenerationNode to GeneratorRun#4885
Open
CristianLara wants to merge 2 commits intofacebook:mainfrom
Open
Propagate suggested_experiment_status from GenerationNode to GeneratorRun#4885CristianLara wants to merge 2 commits intofacebook:mainfrom
CristianLara wants to merge 2 commits intofacebook:mainfrom
Conversation
|
@CristianLara has exported this pull request. If you are a Meta employee, you can view the originating Diff in D92555215. |
CristianLara
added a commit
to CristianLara/Ax
that referenced
this pull request
Feb 11, 2026
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Differential Revision: D92555215
CristianLara
added a commit
to CristianLara/Ax
that referenced
this pull request
Feb 11, 2026
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Differential Revision: D92555215
f6f316d to
2b5dbed
Compare
CristianLara
added a commit
to CristianLara/Ax
that referenced
this pull request
Feb 11, 2026
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Differential Revision: D92555215
CristianLara
added a commit
to CristianLara/Ax
that referenced
this pull request
Feb 11, 2026
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Differential Revision: D92555215
CristianLara
added a commit
to CristianLara/Ax
that referenced
this pull request
Feb 11, 2026
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Differential Revision: D92555215
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4885 +/- ##
=======================================
Coverage 96.79% 96.79%
=======================================
Files 595 595
Lines 62841 62880 +39
=======================================
+ Hits 60826 60864 +38
- Misses 2015 2016 +1 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
2b5dbed to
4164328
Compare
CristianLara
added a commit
to CristianLara/Ax
that referenced
this pull request
Feb 12, 2026
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Differential Revision: D92555215
CristianLara
added a commit
to CristianLara/Ax
that referenced
this pull request
Feb 13, 2026
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Reviewed By: lena-kashtelyan Differential Revision: D92555215
4164328 to
4f79b68
Compare
CristianLara
added a commit
to CristianLara/Ax
that referenced
this pull request
Feb 13, 2026
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Reviewed By: lena-kashtelyan Differential Revision: D92555215
CristianLara
added a commit
to CristianLara/Ax
that referenced
this pull request
Feb 13, 2026
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Reviewed By: lena-kashtelyan Differential Revision: D92555215
CristianLara
added a commit
to CristianLara/Ax
that referenced
this pull request
Feb 13, 2026
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Reviewed By: lena-kashtelyan Differential Revision: D92555215
Summary: ## Summary Add `suggested_experiment_status` column to `GeneratorRun`. Some benefits: 1. We don't need to modify the GS.gen() or Orchestrator methods to pass along a suggested status via tuple, instead it's baked into the GeneratorRuns that are already being passed along 2. The suggested status are more clearly stored in the database for historical tracking Prior to this approach I tried changing `GS.gen()` to return a tuple including the `suggested_experiment_status` but that over-complicated callsites. ## AOSC DIFF D92476170 Reviewed By: lena-kashtelyan Differential Revision: D88091530
…rRun (facebook#4885) Summary: In the previous diff (D88091530) we added `suggested_experiment_status` the column to GeneratorRun, now we populate it during creation from GenerationNode. Reviewed By: lena-kashtelyan Differential Revision: D92555215
4f79b68 to
4ef1456
Compare
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.
Summary: In the previous diff (D88091530) we added
suggested_experiment_statusthe column to GeneratorRun, now we populate it during creation from GenerationNode.Differential Revision: D92555215