【问题标题】:Tensorflow running animations from jupyter/Ipython来自 jupyter/Ipython 的 TensorFlow 运行动画
【发布时间】:2017-08-19 21:59:50
【问题描述】:

我正在通过水滴的张量流示例,代码:

#Import libraries for simulation
import tensorflow as tf
import numpy as np

#Imports for visualization
import PIL.Image
from io import BytesIO
from IPython.display import clear_output, Image, display

#A function for displaying the state of the pond's surface as an image.
def DisplayArray(a, fmt='jpeg', rng=[0,1]):
  """Display an array as a picture."""
  a = (a - rng[0])/float(rng[1] - rng[0])*255
  a = np.uint8(np.clip(a, 0, 255))
  f = BytesIO()
  PIL.Image.fromarray(a).save(f, fmt)
  clear_output(wait = True)
  display(Image(data=f.getvalue()))

sess = tf.InteractiveSession()

def make_kernel(a):
  """Transform a 2D array into a convolution kernel"""
  a = np.asarray(a)
  a = a.reshape(list(a.shape) + [1,1])
  return tf.constant(a, dtype=1)

def simple_conv(x, k):
  """A simplified 2D convolution operation"""
  x = tf.expand_dims(tf.expand_dims(x, 0), -1)
  y = tf.nn.depthwise_conv2d(x, k, [1, 1, 1, 1], padding='SAME')
  return y[0, :, :, 0]

def laplace(x):
  """Compute the 2D laplacian of an array"""
  laplace_k = make_kernel([[0.5, 1.0, 0.5],
                           [1.0, -6., 1.0],
                           [0.5, 1.0, 0.5]])
  return simple_conv(x, laplace_k)

N = 500

# Initial Conditions -- some rain drops hit a pond

# Set everything to zero
u_init = np.zeros([N, N], dtype=np.float32)
ut_init = np.zeros([N, N], dtype=np.float32)

# Some rain drops hit a pond at random points
for n in range(40):
  a,b = np.random.randint(0, N, 2)
  u_init[a,b] = np.random.uniform()

DisplayArray(u_init, rng=[-0.1, 0.1])

# Parameters:
# eps -- time resolution
# damping -- wave damping
eps = tf.placeholder(tf.float32, shape=())
damping = tf.placeholder(tf.float32, shape=())

# Create variables for simulation state
U  = tf.Variable(u_init)
Ut = tf.Variable(ut_init)

# Discretized PDE update rules
U_ = U + eps * Ut
Ut_ = Ut + eps * (laplace(U) - damping * Ut)

# Operation to update the state
step = tf.group(
  U.assign(U_),
  Ut.assign(Ut_))

# Initialize state to initial conditions
tf.global_variables_initializer().run()

# Run 1000 steps of PDE
for i in range(1000):
  # Step simulation
  step.run({eps: 0.03, damping: 0.04})
  DisplayArray(U.eval(), rng=[-0.1, 0.1])

然后从 Ipython 我 import partial_d 但它不会生成动画。

任何使用过 tensorflow 的人都知道如何解决这个问题? Google 提到了Ipython Notebook,找不到/设置它,但我确实安装了 jupyter 和最新的 Ipython。

【问题讨论】:

    标签: tensorflow ipython ipython-notebook jupyter-notebook


    【解决方案1】:

    你以前用过jupyter吗?我认为您需要启动笔记本服务器并从那里运行代码。 尝试运行jupyter notebook,然后将代码导入笔记本。或者,您可以将代码复制并粘贴到代码单元中,然后跳过导入。

    我不熟悉您所指的示例,但我认为这不是 TF 问题。看看你如何通过 jupyter(iPython 的新名称来消除任何混淆)运行它。

    【讨论】:

    • 我熟悉 python,刚刚安装了 jupyter,我确实运行了代码,但不知道如何从那里运行脚本。这是drive.google.com/file/d/0B0nxIjitvEABMkQzZDktcUNyV3c/…drive.google.com/file/d/0B0nxIjitvEABUmppc3JyREg1ZDg/…的两个快照
    • 点击新的,新的笔记本。确保它正确连接到 python 内核(应该是),然后 + 一个新的代码单元,复制你的代码并运行。我可以强烈建议您花几分钟时间研究一下 jupyter 笔记本。在编写 python 时,它们非常有用,尤其是对于诸如 Tensorflow 之类的东西。我一直将它用于我的 TF 开发。不要打开 .py 文件,因为你不能在 jupyter 中运行它。您可以使用前面提到的命令进行导入,但我只是将其放入新笔记本的单元格中。
    • 现在我知道如何使用它了,是的,只需将它复制到单元格中然后运行它就可以了,你如何导入代码?
    • 我相信有一个导入命令,但我从未使用过它。我通常从头开始,但如果你没有太多,你可以将你的代码复制到单元格中。我会研究如何使用 jupyter 来优化工作流程并在单元格之间拆分代码。它真的对我使用 TensorFlow 有帮助!有关使用魔术命令导入代码的更多信息,请参阅this 对于更多的 jupyter 问题,请随时创建一个新问题,请在此处链接,我可以提供帮助,因为这个问题已经得到解答
    【解决方案2】:

    This 让我快速了解如何使用 jupyter 和 tensorflow 生成涟漪动画。

    【讨论】:

      猜你喜欢
      • 2016-06-09
      • 1970-01-01
      • 1970-01-01
      • 2017-02-21
      • 2015-10-15
      • 2017-08-30
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多