0


使用Deep Replay可视化神经网络学习的过程

深度学习通常被认为是一种黑盒技术,因为通常无法分析它在后端是如何工作的。例如创建了一个深层神经网络,然后将它与你的数据相匹配,我们知道它会使用不同层次的神经元和所有的激活等其他重要的超参数来进行训练。但是我们无法想象信息是如何被传递的或者模型是如何学习的。

如果有一个python包可以创建模型在每个迭代/轮次中如何工作或学习的可视化。您可以将这种可视化用于教育目的,也可以将其展示给其他人,向他们展示模型是如何学习的,首先我们展示下结果,如果你对创建这样的可视化感兴趣那么请往下阅读。

Deep Replay一个开放源代码的python包,设计用于让您可视化再现如何在Keras中执行模型训练过程。

设置Colab

对于本文,我们将使用谷歌colab,复制并运行下面给出的代码,以便准备好你的notebook。

  1. # To run this notebook on Google Colab, you need to run these two commands first
  2. # to install FFMPEG (to generate animations - it may take a while to install!)
  3. # and the actual DeepReplay package
  4. !apt-get install ffmpeg
  5. !pip install deepreplay

这个命令也将安装我们需要的库,即deepreplay。

导入库

因为我们正在创建一个深度神经网络,所以我们需要导入所需的库。

  1. from keras.layers import Dense
  2. from keras.models import Sequential
  3. from keras.optimizers import SGD
  4. from keras.initializers import glorot_normal, normal
  5. from deepreplay.callbacks import ReplayData
  6. from deepreplay.replay import Replay
  7. from deepreplay.plot import compose_animations, compose_plots
  8. import matplotlib.pyplot as plt
  9. from IPython.display import HTML
  10. from sklearn.datasets import make_moons%matplotlib inline

加载数据和创建回调

在这一步中,我们将加载将要处理的数据,并为可视化的回放创建一个回调。

  1. group_name = 'moons'
  2. X, y = make_moons(n_samples=2000, random_state=27, noise=0.03)
  3. replaydata = ReplayData(X, y, filename='moons_dataset.h5', group_name=group_name)
  4. fig, ax = plt.subplots(1, 1, figsize=(5, 5))
  5. ax.scatter(*X.transpose(), c=y, cmap=plt.cm.brg, s=5)

创建Keras模型

现在,我们将使用不同的层、激活和所有其他超参数创建Keras模型。同时,我们将打印模型的摘要。

  1. sgd = SGD(lr=0.01)
  2. glorot_initializer = glorot_normal(seed=42)
  3. normal_initializer = normal(seed=42)
  4. model = Sequential()
  5. model.add(Dense(input_dim=2,
  6. units=4,
  7. kernel_initializer=glorot_initializer,
  8. activation='tanh'))
  9. model.add(Dense(units=2,
  10. kernel_initializer=glorot_initializer,
  11. activation='tanh',
  12. name='hidden'))
  13. model.add(Dense(units=1,
  14. kernel_initializer=normal_initializer,
  15. activation='sigmoid',
  16. name='output'))
  17. model.compile(loss='binary_crossentropy',
  18. optimizer=sgd,
  19. metrics=['acc'])
  20. model.summary()

现在让我们训练模型

在训练模型时,我们将回调传递给fit命令。

  1. model.fit(X, y, epochs=200, batch_size=16, callbacks=[replaydata])

绘图

现在我们将创建一些空的图,我们将在其上绘制与模型学习相关的数据。

  1. fig = plt.figure(figsize=(12, 6))
  2. ax_fs = plt.subplot2grid((2, 4), (0, 0), colspan=2, rowspan=2)
  3. ax_ph_neg = plt.subplot2grid((2, 4), (0, 2))
  4. ax_ph_pos = plt.subplot2grid((2, 4), (1, 2))
  5. ax_lm = plt.subplot2grid((2, 4), (0, 3))
  6. ax_lh = plt.subplot2grid((2, 4), (1, 3))

在下一步中,我们只需要将数据传递到这些图中,并创建所有迭代的视频。视频将包含每个轮次的学习过程。

  1. replay = Replay(replay_filename='moons_dataset.h5', group_name=group_name)
  2. fs = replay.build_feature_space(ax_fs, layer_name='hidden',
  3. xlim=(-1, 2), ylim=(-.5, 1),
  4. display_grid=False)
  5. ph = replay.build_probability_histogram(ax_ph_neg, ax_ph_pos)
  6. lh = replay.build_loss_histogram(ax_lh)
  7. lm = replay.build_loss_and_metric(ax_lm, 'acc')

创建一个示例图

  1. sample_figure = compose_plots([fs, ph, lm, lh], 160)
  2. sample_figure

创建视频

  1. sample_anim = compose_animations([fs, ph, lm, lh])
  2. HTML(sample_anim.to_html5_video()

最终的结果就像我们上面展示的那样。

作者:Himanshu Sharma

原文地址:https://towardsdatascience.com/visualizing-learning-of-a-deep-neural-network-b05f1711651c

deephub翻译组

标签:

“使用Deep Replay可视化神经网络学习的过程”的评论:

还没有评论