1. 程式人生 > >tensorflow-條件迴圈控制(3)

tensorflow-條件迴圈控制(3)

tf.count_up_to
tf.count_up_to(
    ref,
    limit,
    name=None
)

增加“ref”直到它達到“limit”

引數:

ref:一個變數,必須是int32, int64型別。必要來自於一個 scalar Variable 節點
limit:一個int,如果增加ref在limit之上,將報錯 'OutOfRange' 。
name: 操作名字(可選)
返回:

tensor,和ref型別相同,在增長之前輸入的副本,如果沒有其他修改輸入,所產生的值將是不同的。


#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Mon Aug 27 11:16:32 2018
@author: myhaspl
"""

import tensorflow as tf
x = tf.Variable(0, name="my_x")
add_var=tf.count_up_to(x,1000)

init_op = tf.global_variables_initializer()
sess=tf.Session()
with sess: 
    sess.run(init_op)
    print sess.run(add_var)
    print x.eval()
    print sess.run(add_var)
    print x.eval()

01
1
2