TensorFlow 1 version | View source on GitHub |
Sets the default float type.
tf.keras.backend.set_floatx(
value
)
Arguments | |
---|---|
value
|
String; 'float16', 'float32', or 'float64'. |
Example: python from keras import backend as K K.floatx() >>> 'float32'
K.set_floatx('float16') K.floatx() >>> 'float16'
Raises | |
---|---|
ValueError
|
In case of invalid value. |