当前位置:网站首页>tf中矩阵乘法

tf中矩阵乘法

2022-08-11 06:45:00 phac123

import tensorflow as tf

a = tf.ones([3, 2])
b = tf.fill([2, 3], 2.)
print(tf.matmul(a, b))

在这里插入图片描述

原网站

版权声明
本文为[phac123]所创,转载请带上原文链接,感谢
https://blog.csdn.net/weixin_42596275/article/details/126259049