Metadata-Version: 2.1
Name: explorex
Version: 0.1.0
Summary: Tiny action-selection helpers for demos.
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.21

# explorex
Tiny action-selection helpers: explore, exploit, fixed_explore, epsilon_greedy.

## Usage
```python
from explorex import explore, exploit, fixed_explore, epsilon_greedy
print(explore(5))
print(exploit([0.1, 0.7, 0.2]))
print(fixed_explore(5, k=2))
print(epsilon_greedy([0.1, 0.7, 0.2], epsilon=0.2))
```
