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

tensorflow隨筆-條件迴圈控制(4)

tf.no_op

tf.no_op(name=None)

什麼都不做,僅做為點位符使用控制邊界。

引數:

  • name: 操作名字(可選)

Returns:

建立的操作

#!/usr/bin/env python2
# -*- coding: utf-8 -*-
"""
Created on Mon Aug 27 11:16:32 2018
@author: myhaspl
"""
 
import tensorflow as tf
x = tf.random_normal([3,5],mean=100)
y1=x+x
y2=tf.no_op()
z=tf.group([y1,y2])


sess=tf.Session()
with sess: 
    sess.run(z)