Introduce ExperimentDesign and AutomationSettings (#4732)#4732
Open
lena-kashtelyan wants to merge 1 commit intofacebook:mainfrom
Open
Introduce ExperimentDesign and AutomationSettings (#4732)#4732lena-kashtelyan wants to merge 1 commit intofacebook:mainfrom
ExperimentDesign and AutomationSettings (#4732)#4732lena-kashtelyan wants to merge 1 commit intofacebook:mainfrom
Conversation
|
@lena-kashtelyan has exported this pull request. If you are a Meta employee, you can view the originating Diff in D89770462. |
lena-kashtelyan
pushed a commit
to lena-kashtelyan/Ax
that referenced
this pull request
Dec 31, 2025
…tDesign.concurrency_limit` (facebook#4732) Summary: Pull Request resolved: facebook#4732 As titled, adding a simple `ExperimentDesign` object. Putting it into properties for serialization for now, so as to not do duplicate work ahead of the storage refactor implementation (and also in case we change things while working on this stack). Differential Revision: D89770462 Privacy Context Container: L1307644
89e2d62 to
5d39841
Compare
lena-kashtelyan
pushed a commit
to lena-kashtelyan/Ax
that referenced
this pull request
Dec 31, 2025
…tDesign.concurrency_limit` (facebook#4732) Summary: As titled, adding a simple `ExperimentDesign` object. Putting it into properties for serialization for now, so as to not do duplicate work ahead of the storage refactor implementation (and also in case we change things while working on this stack). Differential Revision: D89770462 Privacy Context Container: L1307644
5d39841 to
09f3427
Compare
Codecov Report❌ Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #4732 +/- ##
========================================
Coverage 96.39% 96.39%
========================================
Files 613 615 +2
Lines 68295 68406 +111
========================================
+ Hits 65830 65939 +109
- Misses 2465 2467 +2 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
lena-kashtelyan
pushed a commit
to lena-kashtelyan/Ax
that referenced
this pull request
Jan 1, 2026
…tDesign.concurrency_limit` (facebook#4732) Summary: Pull Request resolved: facebook#4732 As titled, adding a simple `ExperimentDesign` object. Putting it into properties for serialization for now, so as to not do duplicate work ahead of the storage refactor implementation (and also in case we change things while working on this stack). Differential Revision: D89770462 Privacy Context Container: L1307644
09f3427 to
68d37c1
Compare
total_concurrency and n weirdness: introduce ExperimentDesign.concurrency_limit68d37c1 to
5c20033
Compare
ExperimentDesign and AutomationSettings (#4732)
lena-kashtelyan
pushed a commit
to lena-kashtelyan/Ax
that referenced
this pull request
Mar 31, 2026
Summary: Adds an `ExperimentDesign` dataclass to hold experiment-level execution settings that are agnostic to the evaluation backend. The first attribute is `concurrency_limit`, which specifies the maximum number of arms to run concurrently across one or multiple trials. The design is serialized into `experiment.properties` via the existing storage path (JSON and SQA) as a stopgap until first-class storage support is added. Differential Revision: D89770462
5c20033 to
2a904ad
Compare
lena-kashtelyan
pushed a commit
to lena-kashtelyan/Ax
that referenced
this pull request
Mar 31, 2026
Summary: Pull Request resolved: facebook#4732 Adds an `ExperimentDesign` dataclass to hold experiment-level execution settings that are agnostic to the evaluation backend. The first attribute is `concurrency_limit`, which specifies the maximum number of arms to run concurrently across one or multiple trials. The design is serialized into `experiment.properties` via the existing storage path (JSON and SQA) as a stopgap until first-class storage support is added. Differential Revision: D89770462
6aa7e22 to
5a0be46
Compare
lena-kashtelyan
pushed a commit
to lena-kashtelyan/Ax
that referenced
this pull request
Apr 3, 2026
Summary: Adds an `ExperimentDesign` dataclass to hold experiment-level execution settings that are agnostic to the evaluation backend. The first attribute is `concurrency_limit`, which specifies the maximum number of arms to run concurrently across one or multiple trials. The design is serialized into `experiment.properties` via the existing storage path (JSON and SQA) as a stopgap until first-class storage support is added. Differential Revision: D89770462
lena-kashtelyan
pushed a commit
to lena-kashtelyan/Ax
that referenced
this pull request
Apr 3, 2026
Summary: Pull Request resolved: facebook#4732 Adds an `ExperimentDesign` dataclass to hold experiment-level execution settings that are agnostic to the evaluation backend. The first attribute is `concurrency_limit`, which specifies the maximum number of arms to run concurrently across one or multiple trials. The design is serialized into `experiment.properties` via the existing storage path (JSON and SQA) as a stopgap until first-class storage support is added. Differential Revision: D89770462
5a0be46 to
e83da4b
Compare
Summary: Adds an `ExperimentDesign` dataclass to hold experiment-level execution settings that are agnostic to the evaluation backend. The first attribute is `concurrency_limit`, which specifies the maximum number of arms to run concurrently across one or multiple trials. The design is serialized into `experiment.properties` via the existing storage path (JSON and SQA) as a stopgap until first-class storage support is added. Differential Revision: D89770462
e83da4b to
d085bba
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:
Adds an
ExperimentDesigndataclass to hold experiment-level execution settings that are agnostic to the evaluation backend. The first attribute isconcurrency_limit, which specifies the maximum number of arms to run concurrently across one or multiple trials.The design is serialized into
experiment.propertiesvia the existing storage path (JSON and SQA) as a stopgap until first-class storage support is added.Differential Revision: D89770462