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

tensorflow-tf.no_op

时间:2018-12-16 13:20:45      阅读:259      评论:0      收藏:0      [点我收藏+]

标签:ted   ssi   参数   with   ret   coding   creat   utf-8   normal   

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)

tensorflow-tf.no_op

标签:ted   ssi   参数   with   ret   coding   creat   utf-8   normal   

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

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