Hands-On Python Deep Learning for the Web
上QQ阅读APP看书,第一时间看更新

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.