tensorflow-constant
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tensorflow-constant相关的知识,希望对你有一定的参考价值。
# -*- coding: utf-8 -*-
"""
Spyder Editor
[email protected]
"""
import tensorflow as tf
import numpy as np
a=tf.constant(np.array([[6,2]],dtype=np.float32))
b=tf.constant([[3,6],[1,3]],dtype=tf.float32)
res=tf.matmul(a,b)
with tf.Session() as sess:
print sess.run(res)
[[20. 42.]]
以上是关于tensorflow-constant的主要内容,如果未能解决你的问题,请参考以下文章