退会したユーザー
import numpy as np
import matplotlib.pyplot as plt
test_imgs = np.load('./input/ukiyoe-test-imgs.npz')['arr_0']
fig = plt.figure(figsize=(18,4))
ax = fig.add_subplot(1, 2, 1)
ax.tick_params(labelbottom=False, bottom=False)
ax.tick_params(labelleft=False, left=False)
ax.imshow(test_imgs[150])
ax = fig.add_subplot(1, 2, 2)
ax.tick_params(labelbottom=False, bottom=False)
ax.tick_params(labelleft=False, left=False)
ax.imshow(test_imgs[193])
plt.show()