Murmur: Dell XPS 13 7390
2019-12-22
I got a great deal on a Dell XPS 13 7390 on Black Friday this year. It’s a regular 7390, not the 2-in-1 model. Still, it’s a really fantastic machine.
993 words
|
5 minutes
tf.keras.callbacks.EarlyStopping not working as expected
tf.keras.callbacks.EarlyStopping is used to terminate a training if a monitored quantity satisfies some criterion. For example, in the following code snippet, the training will stop before reaching the target epoch (10000 in this case) if the training loss has not improved for 3 epochs in a roll:
588 words
|
3 minutes
The implicit dtype conversion in the call and __call__ methods of tf.keras.Model
Note: the content in this post was tested with the GPU version of TensorFlow 2.0.
317 words
|
2 minutes
Different calling methods of the metric objects in Keras
Disclaimer: I use the Keras interface from TensorFlow 2.0.0-rc1, so I’m not sure if the content applies to the original Keras library or other versions of TensorFlow. And note that TensorFlow 2.0.0-rc1 uses eager-execution mode by default.
496 words
|
2 minutes
Turning off the annoying stdout messages from TensorFlow 2.0rc
Disclaimer: I only use the GPU version of TensorFlow v2.0.0-rc1, so I don’t know if this works with other versions.
239 words
|
1 minute