- Hands-On Python Deep Learning for the Web
- Anubhav Singh Sayak Paul
- 68字
- 2021-06-24 16:23:29
NumPy
NumPy is an acronym for Numerical Python. Vanilla Python lacks the implementation of arrays, which are close analogs of the mathematical matrices used to develop machine learning models. NumPy brings to Python support for multidimensional arrays and high-performance computing features. It can be included into any Python code by using the following import statement:
import numpy as np
np is a commonly used convention for importing NumPy.