Failed to load the native TensorFlow runtime: The unofficial troubleshooting guide
2021-01-02
Sometimes TensorFlow will seem to be installed correctly with pip only to fail when you try to import the package with the message...
NumPy square: Understanding np.square()
2021-01-01
You can get the element-wise square of an input with np.square(). This is not exactly the same as x**2.
NumPy random uniform number generator
2021-01-01
The unofficial guide to np.random.uniform()
Sorting a list of tuples in Python
2020-12-31
The best way to sort a list of tuples in Python.
No module named tensorflow: The unofficial troubleshooting guide
2020-12-31
A troubleshooting guide for one of the more frustrating TensorFlow exceptions: the dreaded ModuleNotFoundError.
The Keras Dense layer
2020-12-31
The Keras dense layer can be a little confusing. This post will give you everything you need to start using it.
The NumPy square root operation
2020-12-30
Everything you ever wanted to know about the numpy square root operation...