博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
TensorFlow2.0矩阵与向量的加减乘
阅读量:5049 次
发布时间:2019-06-12

本文共 459 字,大约阅读时间需要 1 分钟。

1、矩阵加法使用

a = np.random.random((3,3)) b = np.random.randint(0,9,(3,3))
ad = tf.add(a,b)

2、矩阵乘法注意

# tensorflow 使用矩阵乘法都必须使用相同类型的数据,否则报错。
a = np.random.random((5,3)) b = np.random.randint(0,9,(3,6))
c = tf.tensordot(a.astype(np.float),b.astype(np.float),axes=1) print(c.numpy())

3、矩阵减法

a = np.random.random((3,3))b = np.random.randint(0,9,(3,3))ad = tf.subtract(a,b)

4、数的除法

d = tf.divide(9*2,3)print(d.numpy())

 

转载于:https://www.cnblogs.com/wuzaipei/p/10956118.html

你可能感兴趣的文章
android 学习Layout布局的使用
查看>>
安卓开发笔记(三十一):shape标签下子类根结点的具体使用
查看>>
Debugger Exception Notification
查看>>
选择排序
查看>>
Restful Api 最佳实践
查看>>
vue - .babelrc
查看>>
Shell test 命令
查看>>
css 权威指南笔记( 五)结构和层叠
查看>>
Linux下vim上编辑实现进度条
查看>>
(转)图解SSH原理
查看>>
oracle的to_number、to_char、to_date用法
查看>>
你不知道的Google应用
查看>>
10.文件的输入输出、异常
查看>>
Hashtable, ArrayList, List, Dictionary学习[转]
查看>>
sqlserver日志的备份与还原
查看>>
从基本功能看,DX11.1相对11的改变,与硬件特性无关
查看>>
PHP时间日期操作增减(date strtotime) 加一天 加一月
查看>>
Baseline
查看>>
tcp断开的4次挥手
查看>>
system.data.sqlite的源代码下载
查看>>