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
Optimize TensorFlow & Keras models with L-BFGS from TensorFlow Probability
2019-11-02
Summary
967 words
|
5 minutes
tf.keras.callbacks.EarlyStopping not working as expected
2019-11-01
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
[NumPy] Reminder: use correct norms to evaluate orders of convergence
2019-10-24
I wrote this post to remind myself of something.
211 words
|
1 minute
The implicit dtype conversion in the call and __call__ methods of tf.keras.Model
2019-10-14
Note: the content in this post was tested with the GPU version of TensorFlow 2.0.
317 words
|
2 minutes
Solution to nonfunctioning HP LaserJet p1102w due to newer versions of hplip in Linux
2019-10-04
Linux distribution: Arch Linux
138 words
|
1 minute
Different calling methods of the metric objects in Keras
2019-09-30
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
2019-09-26
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