dennybritz / reinforcement-learning

Implementation of Reinforcement Learning Algorithms. Python, OpenAI Gym, Tensorflow. Exercises and Solutions to accompany Sutton's Book and David Silver's course.
http://www.wildml.com/2016/10/learning-reinforcement-learning/
MIT License
20.23k stars 6k forks source link

Delete __init__.py #228

Closed dtlics closed 3 years ago

dtlics commented 3 years ago

Empty File

dennybritz commented 3 years ago

Hi! Thanks for the PR! The __init__.py is needed for Python packages: https://stackoverflow.com/questions/448271/what-is-init-py-for

I think newer versions of Python don't require it anymore, but probably still better to leave it there for backwards compatibility!