IntelLabs / coach

Reinforcement Learning Coach by Intel AI Lab enables easy experimentation with state of the art Reinforcement Learning algorithms
https://intellabs.github.io/coach/
Apache License 2.0
2.32k stars 460 forks source link

Bug: Install fails due to installing tensorflow 2.0 #415

Closed philwinder closed 4 years ago

philwinder commented 4 years ago

The setup.py file has a pip restriction on tensorflow to tensorflow>=1.9.0. So tensorflow 2.0 is installed but coach is not compatible.

Workaround

GPUs: pip install tensorflow-gpu==1.14.0 CPUs: pip install intel-tensorflow==1.13.1

shadiendrawis commented 4 years ago

Hi @philwinder,

Indeed, Coach doesn't currently support Tensorflow 2.0, I pushed a small patch to freeze the tensorflow version as a workaround. We'll change that as soon as Coach becomes properly compatible with Tensorflow 2.0.

Shadi