您的位置:首页 > 游戏 > 手游 > 手工制作简单易学_餐饮品牌全案设计公司_厦门百度推广排名优化_网站营销方案

手工制作简单易学_餐饮品牌全案设计公司_厦门百度推广排名优化_网站营销方案

2024/12/22 6:30:50 来源:https://blog.csdn.net/scar2016/article/details/144169269  浏览:    关键词:手工制作简单易学_餐饮品牌全案设计公司_厦门百度推广排名优化_网站营销方案
手工制作简单易学_餐饮品牌全案设计公司_厦门百度推广排名优化_网站营销方案

文章目录

  • 1. 理论
  • 2. python 代码

1. 理论

[ 4 2 9 2 4 3 6 9 2 ] + 9 + 0 → [ 4 2 9 2 4 3 6 9 2 ] + [ 0 0 0 0 9 0 0 0 0 ] + [ 0 0 0 0 0 0 0 0 0 ] = [ 4 2 9 2 13 3 6 9 2 ] \begin{equation} \begin{bmatrix} 4&2&9\\\\ 2&4&3\\\\ 6&9&2\end{bmatrix}+9+0\to\begin{bmatrix} 4&2&9\\\\ 2&4&3\\\\ 6&9&2\end{bmatrix}+\begin{bmatrix} 0&0&0\\\\ 0&9&0\\\\ 0&0&0\end{bmatrix}+\begin{bmatrix} 0&0&0\\\\ 0&0&0\\\\ 0&0&0\end{bmatrix}=\begin{bmatrix} 4&2&9\\\\ 2&13&3\\\\ 6&9&2\end{bmatrix} \end{equation} 426249932 +9+0 426249932 + 000090000 + 000000000 = 4262139932

2. python 代码

#!/usr/bin/env python
# -*- coding:utf-8 -*-
# @FileName  :padding3x3.py
# @Time      :2024/12/1 14:00
# @Author    :Jason Zhang
import torch
from torch import nntorch.set_printoptions(sci_mode=False, precision=3)
torch.manual_seed(455)
if __name__ == "__main__":run_code = 0matrix_3 = torch.randint(1, 10, (3, 3), dtype=torch.float)matrix_1 = torch.randint(1, 10, (1, 1), dtype=torch.float)ones_left = torch.zeros((3, 1))ones_left[1] = 1print(f"ones_left=\n{ones_left}")matrix_13 = ones_left @ matrix_1 @ ones_left.Tmatrix_03 = torch.zeros_like(matrix_3)result = matrix_03 + matrix_13 + matrix_3print(f"matrix_1=\n{matrix_1}")print(f"matrix_13=\n{matrix_13}")print(f"matrix_3=\n{matrix_3}")print(f"matrix_03=\n{matrix_03}")print(f"result=\n{result}")
ones_left=
tensor([[0.],[1.],[0.]])
matrix_1=
tensor([[9.]])
matrix_13=
tensor([[0., 0., 0.],[0., 9., 0.],[0., 0., 0.]])
matrix_3=
tensor([[4., 2., 9.],[2., 4., 3.],[6., 9., 2.]])
matrix_03=
tensor([[0., 0., 0.],[0., 0., 0.],[0., 0., 0.]])
result=
tensor([[ 4.,  2.,  9.],[ 2., 13.,  3.],[ 6.,  9.,  2.]])

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com