├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── bandit ├── __init__.py ├── agent.py ├── bandit.py ├── env.py └── policy.py ├── example ├── envs │ ├── bandits.py │ └── envs.py ├── example_result.PNG └── scripts │ ├── script.py │ └── simulation.sh ├── requirements.txt ├── settings.py └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bandit/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bandit/agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/bandit/agent.py -------------------------------------------------------------------------------- /bandit/bandit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/bandit/bandit.py -------------------------------------------------------------------------------- /bandit/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/bandit/env.py -------------------------------------------------------------------------------- /bandit/policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/bandit/policy.py -------------------------------------------------------------------------------- /example/envs/bandits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/example/envs/bandits.py -------------------------------------------------------------------------------- /example/envs/envs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/example/envs/envs.py -------------------------------------------------------------------------------- /example/example_result.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/example/example_result.PNG -------------------------------------------------------------------------------- /example/scripts/script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/example/scripts/script.py -------------------------------------------------------------------------------- /example/scripts/simulation.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/example/scripts/simulation.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | matplotlib 3 | pandas 4 | -------------------------------------------------------------------------------- /settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/settings.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/niffler92/Bandit/HEAD/setup.py --------------------------------------------------------------------------------