tensorflow1.9新功能 autograph

最近tf更新了一个新功能autograph,可以将python代码转化为计算图的形式,从而大幅提升效率。


  • 安装:
pip install -U tf-nightly
  • 导入:
from tensorflow.contrib import autograph as ag

- **调用autograph有两种方式,一种是声明,另一种是调用封装的api**

#直接对函数声明
@ag.convert()
def f(x):
  if x < 0:
    x = -x
  return x

with tf.Graph().as_default():
  x = tf.constant(-1)
  y = f(x) #声明后不需要再调用api
  with tf.Session() as sess:
    print(sess.run(y))
    # Output: 1

#或者调用api
converted_f = ag.to_graph(f)

print(converted_f(tf.constant(-1)))
# Output: Tensor
print(f(-1))
# Output: 1
  • 有一个简单的例子:
def f(x):
  if x < 0:
    x = -x
  return x

通过autograph.to_grah(f)转换会转变为类似

def graph_mode_f(x):
  with tf.name_scope('f'):

    def if_true():
      with tf.name_scope('if_true'):
        x_1, = x,
        x_1 = tf.negative(x_1)
        return x_1,

    def if_false():
      with tf.name_scope('if_false'):
        x_1, = x,
        return x_1,
    x = ag__.utils.run_cond(tf.greater(x, 0), if_true, if_false)
    return x

调用:

with tf.Graph().as_default():
  x = tf.constant(-1.0)

  converted_f = autograph.to_graph(f)
  y = converted_f(x)

  with tf.Session() as sess:
    print(sess.run(y))
    # Output: 1
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值