Metadata-Version: 2.1
Name: autora-synthetic
Version: 1.0.1a2
Summary: AutoRA Synthetic Experiments
License: MIT License
Project-URL: homepage, http://www.empiricalresearch.ai
Project-URL: repository, https://github.com/AutoResearch/autora-synthetic
Project-URL: documentation, https://autoresearch.github.io/autora-synthetic/
Description-Content-Type: text/markdown
Requires-Dist: autora-core
Provides-Extra: dev
Requires-Dist: autora-synthetic[test] ; extra == 'dev'
Requires-Dist: autora-core[dev] ; extra == 'dev'
Requires-Dist: autora-workflow ; extra == 'dev'
Requires-Dist: scikit-learn ; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: hypothesis ; extra == 'test'

# AutoRA Synthetic Data

Synthetic experiment data for testing AutoRA theorists and experimentalists. 

## User Guide

You will need:

- `python` 3.8 or greater: [https://www.python.org/downloads/](https://www.python.org/downloads/)

Install the synthetic data package (as part of `autora`):

```shell
pip install -U "autora" --pre
```

> 💡We recommend using a `python` environment manager like `virtualenv`.

Print a description of the prospect theory model by Kahneman and Tversky by running:
```shell
python -c "
from autora.experiment_runner.synthetic.economics.prospect_theory import prospect_theory
study = prospect_theory()
print(study.description)
"
```

For more information, see the
[documentation](https://autoresearch.github.io/autora/user-guide/experiment-runners/synthetic/).
