# -*- coding: utf-8 -*-
import tensorflow as tf
a = 3
w = tf.Variable([[0.5, 1.0]]) #行向量
x = tf.Variable([[2.0],
[1.0]])
y = tf.matmul(w, x) #矩阵相乘
print(y)
init_op = tf.global_variables_initializer() #获取初始化全局变量的对象
with tf.Session() as sess: #初始化要在会话中进行
sess.run(init_op) #初始化变量
print (y.eval()) #打印y的值
手机扫一扫
移动阅读更方便
你可能感兴趣的文章