码迷,mamicode.com
首页 > 其他好文 > 详细

tensorflow-通过while_loop计算累加

时间:2019-01-05 10:11:45      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:ESS   variables   glob   var   creat   env   body   +=   ble   

计算累加


#!/usr/bin/env python2

# -*- coding: utf-8 -*-
"""
Created on Mon Jul 24 08:25:41 2017
求1+...+5
@author: myhaspl@myhaspl.com
"""
import tensorflow as tf

i = tf.constant(0)
num_sum=tf.Variable(0)

def cond(i,num_sum):
? ? return i <=5

def body(i,num_sum):
? ? num_sum+=i
? ? i+=1
? ? return (i,num_sum)

i,num_sum= tf.while_loop(cond, body, [i,num_sum])
with tf.Session() as sess:
? ? tf.global_variables_initializer().run()
? ? res = sess.run([i,num_sum])
? ? print res
? ? print res[1]

? ? print 1+2+3+4+5

tensorflow的循环

执行结果

[6, 15]
15
15

tensorflow-通过while_loop计算累加

标签:ESS   variables   glob   var   creat   env   body   +=   ble   

原文地址:http://blog.51cto.com/13959448/2339020

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!