Metadata-Version: 2.4
Name: rl-epsilon-decay
Version: 0.1.0
Summary: A simple epsilon decay function for Reinforcement Learning.
Author: SAAHIL DESAI
License: MIT
License-File: LICENSE
Keywords: epsilon-decay,machine-learning,reinforcement-learning,rl
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# rl-epsilon-decay

A lightweight package that implements an **epsilon decay** function — commonly used in Reinforcement Learning to gradually reduce exploration.

## Example Usage
```python
from rlepsilondecay_colab import epsilon_decay

eps = epsilon_decay(initial_epsilon=1.0, min_epsilon=0.01, decay_rate=0.95, step=10)
print('Decayed epsilon:', eps)
```

Author: SAAHIL DESAI
