Is it possible to switch between keras backend in same python program in which both backend specific functions are imported from the keras internal (tensorflow_backend.py
, theano_backend.py
and cntk_backend.py
).
When I set os.environ[KERAS_BACKEND]='theano'
I get errors from Keras tensorflow internal.
I need to get output from keras tensorflow and keras theano internal (from backend file)for same calculation in same program