tensorflow随笔-constant
生活随笔
收集整理的這篇文章主要介紹了
tensorflow随笔-constant
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
# -*- coding: utf-8 -*-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的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Guava 实用操作集合
- 下一篇: micropython随笔-hello,