type
status
date
slug
summary
tags
category
icon
password
使用python中的numpy或者torch实现和MATLAB“.*;./;”运算
逐元素加减法
在Python中,在torch和numpy中,直接进行1对多的加减法会自动进行逐元素运算。
此外,对于torch,通常为了保证梯度计算的一些问题,比较建议统一使用torch提供的方法
逐元素乘法和除法
在numpy和torch中,都提供了直接的方法用与逐元素的计算。通常torch会使用GPU,所以使用torch的方法计算可以有效提高计算的速度。另一方面,使用给定的方法进行计算,可以避免在自己设计的网络层中丢失数据的信息。
乘法
multiply()函数和*运算符
除法
divide() 函数
- Author:Kecilimu
- URL:https://kecilimu-notion.vercel.app//article/20240709125525
- Copyright:All articles in this blog, except for special statements, adopt BY-NC-SA agreement. Please indicate the source!