1. 程式人生 > >tensorflow-tf.group

tensorflow-tf.group

raise odin 返回 and rand 輸入 inpu 可選 random

tf.group
tf.group(
? ? *inputs,
? ? **kwargs
)

創建一個操作,組合多操作。

當該操作完成後,在inputs的所有操作完成,該操作沒有輸出。

參數:

*inputs: 需要組合的零或多個tensors
name: 操作符的名字(可選)
返回:

一個操作符,能處理所有輸入

Raises:

ValueError: 如果提供了unknown關鍵參數。

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

import tensorflow as tf
x1 = tf.random_normal([3,5000],mean=100)
x2 = tf.random_normal([3,5000],mean=100)
x3 = tf.random_normal([3,5000],mean=100)

y1 = tf.sqrt(x1)
y2 = tf.sqrt(x2)
y3 = tf.sqrt(x3)
z = tf.group([y1,y2,y3])

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

tensorflow-tf.group