-
Notifications
You must be signed in to change notification settings - Fork 0
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
feat: allows functions to be combined and work on state #43
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some comments and basic confusion on my part. please help set me straight!
|
||
# We can also pass parameters to the functions: | ||
>>> def multiply(conditions, multiplier): | ||
... return [el * multiplier for el in conditions] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
i know it's arbitrary, but i assume 'el' is short for 'element'?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes.
Co-authored-by: benwandrew <[email protected]>
Co-authored-by: benwandrew <[email protected]>
Co-authored-by: benwandrew <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good stuff, and thanks for explaining it!
feature!: allow other serializers and set built-in "pickle" as the default
Description
Add functionality to combine functions and use the combined output on state
resolves add some basic functionality that allows multiple experimentalists to be combined (using the same pool of conditions)#560
feat: A new feature