Science Score: 77.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found CITATION.cff file -
✓codemeta.json file
Found codemeta.json file -
✓.zenodo.json file
Found .zenodo.json file -
✓DOI references
Found 6 DOI reference(s) in README -
✓Academic publication links
Links to: joss.theoj.org -
✓Committers with academic emails
6 of 20 committers (30.0%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (17.2%) to scientific vocabulary
Repository
Automated Research Assistant
Basic Info
- Host: GitHub
- Owner: AutoResearch
- License: mit
- Language: TeX
- Default Branch: main
- Homepage: https://autoresearch.github.io/autora/
- Size: 76.6 MB
Statistics
- Stars: 62
- Watchers: 3
- Forks: 9
- Open Issues: 37
- Releases: 35
Metadata Files
README.md
Automated Research Assistant
AutoRA (Automated Research Assistant) is an open-source framework for automating multiple stages of the empirical research process, including model discovery, experimental design, data collection, and documentation for open science.
AutoRA was initially intended for accelerating research in the behavioral and brain sciences. However, AutoRA is designed as a general framework that enables automation of the research processes in other empirical sciences, such as material science or physics.

Installation
We recommend using a Python environment manager like virtualenv. You may refer to the Development Guide on how to set up a virtual environment.
Before installing the PyPI autora package, you may activate your environment. To install the PyPI autora package, run the following command:
shell
pip install "autora"
Documentation
Check out tutorials and documentation at https://autoresearch.github.io/autora. If you run into any issues or questions regarding the use of AutoRA, please reach out to us at the AutoRA forum.
Example
The following basic example demonstrates how to use AutoRA to automate the process of model discovery, experimental design, and data collection.
The discovery problem is defined by a single independent variable $x \in [0, 2 \pi]$ and dependent variable $y$. The experiment amounts to a simple sine wave, $y = \sin(x)$, which is the model we are trying to discover.
Th discovery cycle iterates between the experimentalist, experiment runner, and theorist. Here, we us a "random" experimentalist, which samples novel experimental conditions for $x$ every cycle. The experiment runner then collects data for the corresponding $y$ values. Finally, the theorist uses a Bayesian Machine Scientist (BMS; Guimerà et al., in Science Advances) to identify a scientific model that explains the data.
The workflow relies on the StandardState object, which stores the current state of the discovery process, such as conditions, experiment_data, or models. The state is passed between the experimentalist, experiment runner, and theorist.
```python
Import statements
import pandas as pd import numpy as np import sympy as sp
from autora.variable import Variable, ValueType, VariableCollection
from autora.experimentalist.random import randompool from autora.experimentrunner.synthetic.abstract.equation import equation_experiment from autora.theorist.bms import BMSRegressor
from autora.state import StandardState, onstate, estimatoron_state
Define initial data
Define variable data
iv = Variable(name="x", valuerange=(0, 2 * np.pi), allowedvalues=np.linspace(0, 2 * np.pi, 30)) dv = Variable(name="y", type=ValueType.REAL) variables = VariableCollection(independentvariables=[iv],dependentvariables=[dv])
Define seed condition data
conditions = randompool(variables, numsamples=10, random_state=0)
Define experimentalist
experimentalist = onstate(randompool, output=["conditions"])
Define experiment runner
sinexperiment = equationexperiment(sp.simplify('sin(x)'), variables.independentvariables, variables.dependentvariables[0]) sinrunner = sinexperiment.experiment_runner
experimentrunner = onstate(sinrunner, output=["experimentdata"])
Define theorist
theorist = estimatoronstate(BMSRegressor(epochs=100))
Define state
s = StandardState( variables = variables, conditions = conditions, experiment_data = pd.DataFrame(columns=["x","y"]) )
Cycle through the state
print('Pre-Defined State:') print(f"Number of datapoints collected: {len(s['experiment_data'])}") print(f"Derived models: {s['models']}") print('\n')
for i in range(5): s = experimentalist(s, numsamples=10, randomstate=42) s = experimentrunner(s, addednoise=1.0, randomstate=42) s = theorist(s) print(f"\nCycle {i+1} Results:") print(f"Number of datapoints collected: {len(s['experimentdata'])}") print(f"Derived models: {s['models']}") print('\n') ```
If you are curious about how to apply AutoRA to real-world discovery problems, you can find use case examples of AutoRA in the Use Case Tutorials section of the documentation.
Contributions
We welcome contributions to the AutoRA project. Please refer to the contributor guide for more information. Also, feel free to ask any questions or provide any feedback regarding core contributions on the AutoRA forum.
About
This project is in active development by the Autonomous Empirical Research Group.
The development of this package was supported by Schmidt Science Fellows, in partnership with the Rhodes Trust, as well as the Carney BRAINSTORM program at Brown University. The development of auxiliary packages for AutoRA, such as autodoc, is supported by Schmidt Sciences, LLC. and the Virtual Institute for Scientific Software (VISS). The AutoRA package was developed using computational resources and services at the Center for Computation and Visualization at Brown University.
Read More
Citation
If you would like to reference AutoRA, you can use the following BibTeX entry for the associated publication in JOSS:
bibtex
@article{Musslick_AutoRA_Automated_Research_2024,
author = {Musslick, Sebastian and Andrew, Benjamin and Williams, Chad C. and Hewson, Joshua T. S. and Li, Sida and Marinescu, Ioana and Dubova, Marina and Dang, George T. and Strittmatter, Younes and Holland, John G.},
doi = {10.21105/joss.06839},
journal = {Journal of Open Source Software},
month = dec,
number = {104},
pages = {6839},
title = {{AutoRA: Automated Research Assistant for Closed-Loop Empirical Research}},
url = {https://joss.theoj.org/papers/10.21105/joss.06839},
volume = {9},
year = {2024}
}
Owner
- Name: Autonomous Empirical Research Initiative
- Login: AutoResearch
- Kind: organization
- Website: www.empiricalresearch.ai
- Repositories: 12
- Profile: https://github.com/AutoResearch
We strive to enhance and accelerate scientific discovery by automating steps in the empirical research process.
Citation (CITATION.cff)
cff-version: "1.2.0"
authors:
- family-names: Musslick
given-names: Sebastian
orcid: "https://orcid.org/0000-0002-8896-639X"
- family-names: Andrew
given-names: Benjamin
- family-names: Williams
given-names: Chad C.
orcid: "https://orcid.org/0000-0003-2016-5614"
- family-names: Hewson
given-names: Joshua T. S.
- family-names: Li
given-names: Sida
orcid: "https://orcid.org/0009-0009-7849-1923"
- family-names: Marinescu
given-names: Ioana
- family-names: Dubova
given-names: Marina
orcid: "https://orcid.org/0000-0001-5264-0489"
- family-names: Dang
given-names: George T.
orcid: "https://orcid.org/0009-0008-1566-8245"
- family-names: Strittmatter
given-names: Younes
orcid: "https://orcid.org/0000-0002-3414-2838"
- family-names: Holland
given-names: John G.
orcid: "https://orcid.org/0000-0001-6845-8657"
contact:
- family-names: Musslick
given-names: Sebastian
orcid: "https://orcid.org/0000-0002-8896-639X"
doi: 10.5281/zenodo.14278950
message: If you use this software, please cite our article in the
Journal of Open Source Software.
preferred-citation:
authors:
- family-names: Musslick
given-names: Sebastian
orcid: "https://orcid.org/0000-0002-8896-639X"
- family-names: Andrew
given-names: Benjamin
- family-names: Williams
given-names: Chad C.
orcid: "https://orcid.org/0000-0003-2016-5614"
- family-names: Hewson
given-names: Joshua T. S.
- family-names: Li
given-names: Sida
orcid: "https://orcid.org/0009-0009-7849-1923"
- family-names: Marinescu
given-names: Ioana
- family-names: Dubova
given-names: Marina
orcid: "https://orcid.org/0000-0001-5264-0489"
- family-names: Dang
given-names: George T.
orcid: "https://orcid.org/0009-0008-1566-8245"
- family-names: Strittmatter
given-names: Younes
orcid: "https://orcid.org/0000-0002-3414-2838"
- family-names: Holland
given-names: John G.
orcid: "https://orcid.org/0000-0001-6845-8657"
date-published: 2024-12-05
doi: 10.21105/joss.06839
issn: 2475-9066
issue: 104
journal: Journal of Open Source Software
publisher:
name: Open Journals
start: 6839
title: "AutoRA: Automated Research Assistant for Closed-Loop Empirical
Research"
type: article
url: "https://joss.theoj.org/papers/10.21105/joss.06839"
volume: 9
title: "AutoRA: Automated Research Assistant for Closed-Loop Empirical
Research"
GitHub Events
Total
- Create event: 37
- Release event: 1
- Issues event: 35
- Watch event: 22
- Delete event: 31
- Member event: 1
- Issue comment event: 10
- Push event: 361
- Pull request review event: 20
- Pull request event: 40
- Fork event: 3
Last Year
- Create event: 37
- Release event: 1
- Issues event: 35
- Watch event: 22
- Delete event: 31
- Member event: 1
- Issue comment event: 10
- Push event: 361
- Pull request review event: 20
- Pull request event: 40
- Fork event: 3
Committers
Last synced: almost 3 years ago
All Time
- Total Commits: 1,686
- Total Committers: 20
- Avg Commits per committer: 84.3
- Development Distribution Score (DDS): 0.53
Top Committers
| Name | Commits | |
|---|---|---|
| John Gerrard Holland | j****1@b****u | 793 |
| Roger Guimera | r****a@g****m | 183 |
| Sebastian Musslick | s****n@m****e | 145 |
| benwandrew | b****w@g****m | 143 |
| TheLemonPig | 4****g@u****m | 110 |
| George Dang | 5****g@u****m | 96 |
| TheLemonPig | j****n@b****u | 86 |
| listar2000 | 3****0@u****m | 44 |
| dependabot[bot] | 4****]@u****m | 36 |
| John Gerrard Holland | o****e@j****e | 22 |
| seeslab | s****b@g****m | 7 |
| listar2000 | l****5@o****m | 6 |
| Admin | i****m@p****u | 4 |
| Hannah Even | h****n@g****m | 3 |
| Roger Guimera | r****a@c****u | 2 |
| George Dang | g****g@b****u | 2 |
| hollandjg | h****g@u****m | 1 |
| Admin | A****n@d****u | 1 |
| kphan20 | 8****0@u****m | 1 |
| ioanam25 | 7****5@u****m | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 122
- Total pull requests: 164
- Average time to close issues: 3 months
- Average time to close pull requests: 7 days
- Total issue authors: 8
- Total pull request authors: 11
- Average comments per issue: 0.61
- Average comments per pull request: 0.57
- Merged pull requests: 130
- Bot issues: 0
- Bot pull requests: 46
Past Year
- Issues: 26
- Pull requests: 24
- Average time to close issues: about 1 month
- Average time to close pull requests: 9 days
- Issue authors: 4
- Pull request authors: 3
- Average comments per issue: 0.23
- Average comments per pull request: 0.25
- Merged pull requests: 18
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- musslick (69)
- hollandjg (20)
- younesStrittmatter (16)
- benwandrew (10)
- chadcwilliams (3)
- gtdang (3)
- TheLemonPig (1)
- LJKS (1)
Pull Request Authors
- musslick (54)
- dependabot[bot] (45)
- hollandjg (34)
- younesStrittmatter (32)
- benwandrew (15)
- chadcwilliams (6)
- TheLemonPig (3)
- gtdang (3)
- varun646 (2)
- blinodelka (2)
- acesmeci (1)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 36
-
Total downloads:
- pypi 9,547 last-month
-
Total dependent packages: 67
(may contain duplicates) -
Total dependent repositories: 6
(may contain duplicates) - Total versions: 286
- Total maintainers: 8
pypi.org: autora-core
Autonomous Research Assistant (AutoRA) is a framework for automating steps of the empirical research process.
- Documentation: https://autora-core.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 5.0.3
published over 1 year ago
Rankings
Maintainers (2)
pypi.org: equation-tree
Describe your contribution
- Documentation: https://equation-tree.readthedocs.io/
- License: Copyright (c) 2023 Younes Strittmatter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 0.0.33
published about 2 years ago
Rankings
Maintainers (1)
pypi.org: autora
Autonomous Research Assistant (AutoRA) is a framework for automating steps of the empirical research process.
- Documentation: https://autora.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 4.2.0
published about 1 year ago
Rankings
Maintainers (5)
pypi.org: autora-theorist-bsr
Bayesian Symbolic Regression theorist for AutoRA
- Documentation: https://autora-theorist-bsr.readthedocs.io/
- License: MIT License
-
Latest release: 1.0.0
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-theorist-darts
Differentiable Architecture Search theorist for AutoRA
- Documentation: https://autora-theorist-darts.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 1.1.0
published over 1 year ago
Rankings
Maintainers (2)
pypi.org: autora-theorist-bms
Bayesian Machine Scientist theorist for AutoRA
- Documentation: https://autora-theorist-bms.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 1.0.6
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: mixture-experimentalist
The goal of this project is to examine the performance of a mixture experimentalist–a hybrid of different experimental sampling strategies–in terms of its ability to recover a ground-truth model from synthetic data.
- Documentation: https://mixture-experimentalist.readthedocs.io/
- License: MIT license
-
Latest release: 1.0.0a7
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-experiment-runner-firebase-prolific
AutoRA Firebase Prolific Experiment Runner provides experiment runners to run experiments with prolific and firebase
- Documentation: https://autora-experiment-runner-firebase-prolific.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 1.0.1
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-sampler-uncertainty
Sampler based on where the model is least certain.
- Documentation: https://autora-experimentalist-sampler-uncertainty.readthedocs.io/
- License: MIT license
-
Latest release: 1.0.1
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-sampler-model-disagreement
Compares weaknesses in multiple models
- Documentation: https://autora-experimentalist-sampler-model-disagreement.readthedocs.io/
- License: MIT license
-
Latest release: 1.0.4
published over 2 years ago
Rankings
Maintainers (2)
pypi.org: autora-experimentalist-sampler-nearest-value
A sampler which returns the nearest values between the input samples and the allowed values, without replacement.
- Documentation: https://autora-experimentalist-sampler-nearest-value.readthedocs.io/
- License: MIT license
-
Latest release: 1.0.1
published almost 3 years ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-sampler-inequality
AutoRA Inequality Sampler
- Documentation: https://autora-experimentalist-sampler-inequality.readthedocs.io/
- License: MIT License
-
Latest release: 1.0.1
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-sampler-novelty
AutoRA Novelty Experimentalist
- Documentation: https://autora-experimentalist-sampler-novelty.readthedocs.io/
- License: MIT License
-
Latest release: 1.0.2
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-falsification
AutoRA Falsification Experimentalist
- Documentation: https://autora-experimentalist-falsification.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 2.2.0
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-theorist-toolkit
Toolkit to build algorithms for model recovery
- Documentation: https://autora-theorist-toolkit.readthedocs.io/
- License: MIT license
-
Latest release: 0.3.0
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-theorist-rnn-sindy-rl
An AutoRA theorist for discovering reinforcement learning models from behavioral experiments.
- Documentation: https://autora-theorist-rnn-sindy-rl.readthedocs.io/
- License: Copyright (c) 2024 Sebastian Musslick Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 0.0.3
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: rnn-sindy-rl
An AutoRA theorist for discovering reinforcement learning models from behavioral experiments.
- Documentation: https://rnn-sindy-rl.readthedocs.io/
- License: Copyright (c) 2024 Sebastian Musslick Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 0.0.1a0
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-bandit-random
Create a sequence of bandit task rewards using initial reward probabilties and drift
- Documentation: https://autora-experimentalist-bandit-random.readthedocs.io/
- License: Copyright (c) 2024 Younes Strittmatter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 1.0.0
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: bandit-random
Create a sequence of bandit task rewards using iniitial reward probabilty and drift
- Documentation: https://bandit-random.readthedocs.io/
- License: Copyright (c) 2024 Younes Strittmatter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 0.0.1
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-prediction-filter
Filters condition based on model predictions.
- Documentation: https://autora-experimentalist-prediction-filter.readthedocs.io/
- License: Copyright (c) 2024 Younes Strittmatter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 1.1.0
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-extrapolation
AutoRA Extrapolation Experimentalist
- Documentation: https://autora-experimentalist-extrapolation.readthedocs.io/
- License: Copyright (c) 2024 Younes Strittmatter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 1.0.1
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-divergence
sampling based on divergence
- Documentation: https://autora-experimentalist-divergence.readthedocs.io/
- License: Copyright (c) 2024 Younes Strittmatter Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 0.0.2
published almost 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-sampler-leverage
Experimentalist that uses statistical leverage to determine the next data to sample.
- Documentation: https://autora-experimentalist-sampler-leverage.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 0.0.1a0
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: equation-sampler
Tool to sample equations
- Documentation: https://equation-sampler.readthedocs.io/
- License: MIT license
-
Latest release: 0.0.5
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-model-disagreement
Compares weaknesses in multiple models
- Documentation: https://autora-experimentalist-model-disagreement.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 2.2.0
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-novelty
AutoRA Novelty Experimentalist
- Documentation: https://autora-experimentalist-novelty.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 2.2.0
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-synthetic-abstract-equation
An experiment runner from arbitrary equations
- Documentation: https://autora-synthetic-abstract-equation.readthedocs.io/
- License: MIT license
-
Latest release: 0.1.0
published about 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-synthetic-abstract-sympy-equation
An experiment runner that uses an arbitrary sympy function
- Documentation: https://autora-synthetic-abstract-sympy-equation.readthedocs.io/
- License: MIT license
-
Latest release: 0.0.1
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-experiment-runner-synthetic-psychology-ssm
Run synthetic experiments with hierarchical sequential sampling models
- Documentation: https://autora-experiment-runner-synthetic-psychology-ssm.readthedocs.io/
- License: Copyright (c) 2023 Enter your full name Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 0.0.2
published about 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-uncertainty
Experimentalist based on where the model is least certain.
- Documentation: https://autora-experimentalist-uncertainty.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 2.1.0
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-inequality
AutoRA Inequality Experimentalist
- Documentation: https://autora-experimentalist-inequality.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 2.2.0
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-assumption
Describe your contribution
- Documentation: https://autora-experimentalist-assumption.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 1.0.0
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-nearest-value
A experimentalist which returns the nearest values between the input samples and the allowed values, without replacement.
- Documentation: https://autora-experimentalist-nearest-value.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 2.2.0
published over 1 year ago
Rankings
Maintainers (1)
pypi.org: autora-experimentalist-leverage
Experimentalist that uses statistical leverage to determine the next data to sample.
- Documentation: https://autora-experimentalist-leverage.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 1.0.0
published over 2 years ago
Rankings
Maintainers (1)
pypi.org: autora-experiment-runner-experimentation-manager-firebase
AutoRA Experimentation Manager Firebase provides functionality to manage communication of conditions and observations between AutoRA and an experiment on Firebase.
- Documentation: https://autora-experiment-runner-experimentation-manager-firebase.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 1.1.5
published 7 months ago
Rankings
Maintainers (1)
pypi.org: autora-experiment-runner-recruitment-manager-prolific
AutoRA Prolific Recruitment Manager provides functionality to recruit participants via Prolific to set up an experiment runner for AutoRA
- Documentation: https://autora-experiment-runner-recruitment-manager-prolific.readthedocs.io/
- License: MIT License Copyright (c) 2023 Autonomous Empirical Research Initiative Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
Latest release: 1.0.1
published over 1 year ago
Rankings
Maintainers (1)
Dependencies
- mkdocs-gen-files ^0.3.4 develop
- mkdocs-literate-nav ^0.4.1 develop
- mkdocs-material ^8.3.8 develop
- mkdocs-section-index ^0.3.4 develop
- mkdocstrings-python ^0.7.1 develop
- pytest ^7.1.2 develop
- graphviz ^0.14.1
- imageio ^2.9.0
- matplotlib ^3.2.1
- numpy ^1.18
- pandas ^1.4.2
- python ^3.8
- scikit-learn ^1.1.1
- scipy ^1.7.1
- seaborn ^0.11.1
- tinkerforge ^2.1.25
- torch ^1.11.0
- tqdm ^4.64.0
- actions/checkout v2 composite
- actions/setup-python v2 composite
- actions/checkout v3 composite
- actions/setup-python v4 composite
- actions/cache v3 composite
- actions/checkout v3 composite
- actions/setup-python v4 composite
- actions/checkout v3 composite
- actions/setup-python v4 composite
- actions/checkout v2 composite
- micnncim/action-label-syncer v1 composite
- actions/checkout v3 composite
- actions/setup-python v4 composite
- actions/checkout v3 composite
- actions/setup-python v4 composite

