[关闭]
@songying 2018-07-29T15:13:45.000000Z 字数 649 阅读 1245

tf.InteractiveSession

TensorFlow


https://www.tensorflow.org/api_docs/python/tf/InteractiveSession

这是一个类。 Class InteractiveSession

A TensorFlow Session for use in interactive contexts, such as a shell.

与Session的唯一不同之处在于InteractiveSession()加载自身作为默认构建的session。方法tf.Tensor.evaltf.Operation.run将使用该session来操作。 这对于 在shell和ipython notebooks中是极为方便的。

这也意味着,在InteractiveSession()中,不需要使用其余session就能够产生结果。

__init__

创建一个交互式的TensorFlow Session。

  1. __init__(
  2. target='',
  3. graph=None,
  4. config=None
  5. )

属性

方法

as_default()

close()

list_devices()

make_callable()

partial_run()

partial_run_setup()

run()

添加新批注
在作者公开此批注前,只有你和作者可见。
回复批注