Reputation: 2240
I'm running out of precision in my application. Is it possible to use doubles as input, output and internally? If so, how do I specify this in the layers?
Upvotes: 2
Views: 3526
Reputation: 17239
Sets the default float type to
tf.keras.backend.set_floatx('float64')
Upvotes: 2