Keras on PyPy?
Wondering if non-standard interpreters like pypy and cpython can be used to speed up training.
I got stuck on this problem a while ago. I was doing reinforcement learning and the environment needed to run in pypy to make it fast enough. I ended up using Pyro4 to bridge pypy (environment) and CPython (keras).
Asked about this before. I was told no one cared since the real work is done in C and would not benefit from pypy. So the python level optimizations would not affect much.
> non-standard interpreters like pypy and cpython
Isn't CPython the default and most standard interpreter?