标签:ssi div rar variable edit run init 初始化 with
# -*- coding: utf-8 -*-
"""
Spyder Editor
This is a temporary script file.
"""
import tensorflow as tf
a=tf.Variable(6,dtype=tf.int32)
b=tf.Variable(3,dtype=tf.int32)
res=tf.div(a,b)
with tf.Session() as sess:
sess.run(a.initializer)
sess.run(b.initializer)
print sess.run(res)
标签:ssi div rar variable edit run init 初始化 with
原文地址:http://blog.51cto.com/13959448/2322795