テストデータ中の予測不能(?)画像について

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()

添付データ

  • test_img.ipynb?X-Amz-Expires=10800&X-Amz-Date=20240419T131433Z&X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAIP7GCBGMWPMZ42PQ
  • Favicon
    new user
    コメントするには 新規登録 もしくは ログイン が必要です。