Machine Learning with Tensorflow
I am using manjaro KDE linux, this is the first post to record the path of learning machine learning
My machine has Nvidia Driver installed.
Installation
sudo pacman -Syu tensorflow-cuda cuda cudnn python-pycuda python-tensorflow-cuda python-matplotlib
Hello World
python
import tensorflow as tf
print("Num GPUs Available: ", len(tf.config.list_physical_devices('GPU')))
Next
- Prepare some sample data and train the machine!