NumPy Archives - Don's Machine Learning https://donml.io/category/numpy/ My Machine Learning Journey Mon, 05 Dec 2022 22:53:12 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://donml.io/wp-content/uploads/2022/09/cropped-logo-32x32.png NumPy Archives - Don's Machine Learning https://donml.io/category/numpy/ 32 32 Introduction to Numpy https://donml.io/2022/09/14/introduction-to-numpy/ https://donml.io/2022/09/14/introduction-to-numpy/#respond Wed, 14 Sep 2022 19:20:37 +0000 https://donml.io/?p=1153 Introduction to NumPy Machine Learning Zoomcamp¶ 1.7 Introduction to NumPy¶ Plan: Creating arrays Multi-dimentional array Randomly generated arrays Element-wise operations Comparison operations Logical operations Summarizing operations In [5]: import numpy as np In [6]: np Out[6]: <module 'numpy' from '/home/don/miniconda3/lib/python3.8/site-packages/numpy/__init__.py'> Creating arrays¶ In [8]: np.zeros(10) Out[8]: array([0., 0., 0., 0., 0., 0., 0., 0., 0., 0.]) In [11]: np.ones(10) […]

The post Introduction to Numpy appeared first on Don's Machine Learning.

]]>
Introduction to NumPy

The post Introduction to Numpy appeared first on Don's Machine Learning.

]]>
https://donml.io/2022/09/14/introduction-to-numpy/feed/ 0