"Machine Learning in Python" by Adrian Rosebrock
Machine Learning in Python
by Adrian Rosebrock on January 14, 2019
This is just my excerpt for this article.
Install the required Python machine learning libraries
- NumPy For numerical processing with Python.
- PIL A simple image processing library. OpenCV is not a requirement today!
- scikit-learn Contains the machine learning algorithms we’ll cover today (we’ll need version 0.20+ which is why you see the --upgrade flag below).
- Keras and TensorFlow For deep learning. The CPU version of TensorFlow is fine for today’s example.
- imutils Adrian's personal package of image processing/computer vision convenience functions
留言