I'm looking for a way to change floatx
in keras
directly in python.
floatx
is the default float
type (float16
, float32
. . .)
The config is stored in a json
file at:
$HOME/.keras/keras.json
But I'm looking for a way to change the config inside my python programm without changing the config file itself.
There is a similiar question, in which somebody ask the same for changing the backend, which is also stored in keras.json
.
The accepted answer involves setting the environment variable KERAS_BACKEND
and reload the keras
module, but I didn't find a similar environment variable for floatx
.