Matrix Computation With NumPy

栏目: IT技术 · 发布时间: 4年前

内容简介:How NumPy Can Simplify Your Code And Increase Its Performance At The Same Time. Broadcasting and SIMD come to rescue!Performance is really an important aspect when we are solving problems using Machine Learning, especially Deep Learning. Using a neural net

How NumPy Can Simplify Your Code And Increase Its Performance At The Same Time. Broadcasting and SIMD come to rescue!

Introduction

Performance is really an important aspect when we are solving problems using Machine Learning, especially Deep Learning. Using a neural network for calculating things can become a complex calculation because it involves matrix and vectors to it.

Suppose we want to calculate a 25 x 25 matrix that is being multiplied by 5. At the first time you are being introduced to programming, You will calculate vectors or matrices that look like this,

for i in range(25):
    for j in range(25):
        x[i][j] *= 5

If we use this method, it will make our computation longer and we will not get the result at the time that we desired. Thankfully, in Python, we have NumPy library to solve this matrix and vector calculation.

By using NumPy library, we can make that 3-lines of code become 1-line of code like this one below,

import numpy as np# Make it as NumPy array first
x = np.array(x)
x = x * 5

And if we compare the time, for this case, the conventional way will take around 0.000224 and the NumPy method is just 0.000076. The NumPy is almost 3 times faster than the conventional one, but it also simplifies your code at the same time!

Just imagine when you want to calculate a bigger matrix than in this example here and imagine how much the time that will you save. This calculation is classified as vectorization where the calculation has occurred on a matrix or vector representation. Therefore, with that computation method, it will save your time for the same result.

How is that happen? What is the magic of NumPy so it can calculate the matrix simpler and faster? This article will introduce you to the concepts of Single Instruction Multiple Data (SIMD) and Broadcasting. Without further, let’s get to it.


以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

另一个地球

另一个地球

[美]马克·格雷厄姆、威廉·H·达顿 / 胡泳、徐嫩羽 / 电子工业出版社 / 2015-10-1 / 78

互联网在日常工作和生活中扮演日益重要的角色,互联网将如何重塑社会?本书通过汇集有关互联网文化、经济、政治角色等问题的研究成果,提供了特定社会制度背景下解决这一问题的根本办法。 关于互联网的研究是蓬勃发展的崭新领域,牛津大学互联网研究院(OII)作为创新型的跨学科学院,自成立起就专注于互联网研究。牛津大学互联网研究院关于互联网+社会的系列讲座在一定程度上塑造了互联网+社会。本书内容基于不同学科......一起来看看 《另一个地球》 这本书的介绍吧!

HTML 压缩/解压工具
HTML 压缩/解压工具

在线压缩/解压 HTML 代码

HTML 编码/解码
HTML 编码/解码

HTML 编码/解码

XML 在线格式化
XML 在线格式化

在线 XML 格式化压缩工具