AutoKeras Image Regressionを用いた画像解析サンプル(年齢判定)

AutoKerasの画像解析には
・Image Classification
・Image Regression
の2つがあります。

Classificationは画像の分類で、よく見るMNISTの手書き数字が何であるかの判定に用いられています。
Regressionは直訳すると「回帰」で、どういった場面で使えるのかよくわかっていませんでした。


Image Regression(画像の回帰)



非常に参考になったのがこちらの記事です。

きゅうり画像で回帰問題を解いてみた
顔画像から年齢を予測

特に「顔画像から年齢」という用例が非常にしっくり来ました。
「犬、猫、馬のどれか」という問題ではなく、段階的に変化していく「年齢」や「サイズ」、「家の築年数」といった用途で使用できそうです。



AutoKerasでのサンプル



Image Regression
こちらのサンプルと、
顔画像から年齢を予測
こちらのサンプルを参考に、顔画像から年齢を判定するプログラムをAutoKerasを用いて作成してみます。

データはこちらから取得しました。
https://susanqq.github.io/UTKFace/

「Aligned&Cropped Faces」の「UTKFace.tar.gz」を使用します。
顔の画像が200x200ピクセルで切り出されたものが23,708ファイルあります。
ファイル名の先頭が年齢になっているので、ラベルとして使用します。

UTKFace.tar.gzを展開せずに中身の画像データを使用しました。
Python tar.gzファイルを解凍せずに中身の画像ファイルを読み込む

・sample.py


  1. import os
  2. import random
  3. import tarfile
  4. import numpy as np
  5. from PIL import Image
  6. # from sklearn.model_selection import train_test_split
  7. import tensorflow as tf
  8. import autokeras as ak
  9. train_images = []
  10. train_labels = []
  11. test_images = []
  12. test_labels = []
  13. with tarfile.open(name='UTKFace.tar.gz', mode='r') as tar:
  14.     for info in tar.getmembers():
  15.         if not info.isfile():
  16.             continue
  17.         # ファイル名から年齢を取得し、ラベルに採用
  18.         # UTKFace/82_0_2_20170111210110290.jpg.chip.jpg -> 82
  19.         print(info.name)
  20.         age = os.path.basename(info.name).split('_')[0]
  21.         # 内容をio.BufferedReaderで取り出し
  22.         f = tar.extractfile(info)
  23.         img = Image.open(f)
  24.         # メモリに乗らないのでリサイズ
  25.         img = img.resize((64, 64))
  26.         # 学習用とテスト用に分割
  27.         if random.randint(1, 10) <= 1:
  28.             test_images.append(np.asarray(img))
  29.             test_labels.append(int(age))
  30.             img.save(os.path.join('test', os.path.basename(info.name)))
  31.         else:
  32.             train_images.append(np.asarray(img))
  33.             train_labels.append(int(age))
  34.         
  35. train_images = np.array(train_images,dtype=np.float32)
  36. train_labels = np.array(train_labels)
  37. test_images = np.array(test_images,dtype=np.float32)
  38. test_labels = np.array(test_labels)
  39. # メモリーエラーで強制終了したので、自前で分割
  40. # x_train, x_test, y_train, y_test = train_test_split(images, labels, test_size=0.1, shuffle = False)
  41. print(len(train_images))
  42. print(len(train_labels))
  43. print(len(test_images))
  44. print(len(test_labels))
  45. print(test_images.shape)
  46. reg = ak.ImageRegressor(
  47.     overwrite=True,
  48.     max_trials=3)
  49. reg.fit(train_images, train_labels, epochs=10)
  50. predicted_y = reg.predict(test_images)
  51. print(predicted_y)
  52. print(reg.evaluate(test_images, test_labels))
  53. # モデルの保存
  54. model = reg.export_model()
  55. model.save('model.h5')




200x200の画像そのままだとメモリにデータが乗らず、プログラムが強制終了しました。
64x64の画像にリサイズして解析に利用しています。

トレーニングとテストデータに分割するのによく用いられる「train_test_split」も
メモリ使用量が大きいため、自前で適当に分割しています。

テストに分類した画像は、後の確認用に保存しておきました。


出来上がったモデルの内容を見てみます。


  1. import tensorflow as tf
  2. # 出力したモデルの読み込み
  3. model = tf.keras.models.load_model('model.h5')
  4. # 内容出力
  5. print(model.summary())




Layer (type)                 Output Shape             Param #
=================================================================
input_1 (InputLayer)         [(None, 64, 64, 3)]     0        
_________________________________________________________________
resizing (Resizing)         (None, 71, 71, 3)         0        
_________________________________________________________________
xception (Functional)        (None, 3, 3, 2048)        20861480
_________________________________________________________________
flatten (Flatten)            (None, 18432)             0        
_________________________________________________________________
regression_head_1 (Dense)    (None, 1)                 18433    
=================================================================
Total params: 20,879,913
Trainable params: 20,825,385
Non-trainable params: 54,528
_________________________________________________________________
None



ポイントは最終的なアウトプットが(None, 1)になっている点でしょうか。
Classificationでは解析対象とした年齢分の出力となるはずです。



簡単な評価プログラム



出力したモデルを用いて年齢を判定してみます。

・check.py


  1. import os
  2. import tkinter as tk
  3. import numpy as np
  4. from PIL import Image, ImageTk
  5. import tensorflow as tf
  6. # 画像ファイルの読み込み
  7. face_files = [
  8.     'test/14_1_0_20170109204321875.jpg.chip.jpg',
  9.     'test/25_0_4_20170117193004258.jpg.chip.jpg',
  10.     'test/41_0_0_20170117140625076.jpg.chip.jpg',
  11.     'test/54_1_0_20170104235918548.jpg.chip.jpg',
  12.     'test/64_1_1_20170112233355207.jpg.chip.jpg',
  13.     'test/80_0_0_20170111205541652.jpg.chip.jpg'
  14. ]
  15. images = []
  16. ages = []
  17. train_images = []
  18. for face_file in face_files:
  19.     img = Image.open(face_file)
  20.     images.append(img)
  21.     ages.append(os.path.basename(face_file).split('_')[0])
  22.     train_images.append(np.array(img))
  23. train_images = np.array(train_images,dtype=np.float32)
  24. # 出力したモデルの読み込み
  25. model = tf.keras.models.load_model('model.h5')
  26. # 解析実行
  27. predicted_y = model.predict(train_images)
  28. print(predicted_y)
  29. # 結果を表示
  30. root = tk.Tk()
  31. root.geometry('500x200')
  32. root.title('face image')
  33. tk_images = []
  34. for i in range(len(face_files)):
  35.     tk_images.append(ImageTk.PhotoImage(images[i]))
  36. for i in range(len(face_files)):
  37.     label = tk.Label(root, image = tk_images[i])
  38.     label.grid(column=i, row=0)
  39.     
  40.     label = tk.Label(root, text = 'real:%s' % (ages[i]))
  41.     label.grid(column=i, row=1)
  42.     label = tk.Label(root, text = 'predict:%.1f' % (predicted_y[i]))
  43.     label.grid(column=i, row=2)
  44. root.mainloop()



そこまで学習に時間をかけていないモデルとしては、とんでもないハズレもなくそれなりの結果が出たのではないかと思います。

a34_01.png



【参考URL】

きゅうり画像で回帰問題を解いてみた
顔画像から年齢を予測
https://susanqq.github.io/UTKFace/
Image Regression
関連記事

コメント

プロフィール

Author:symfo
blog形式だと探しにくいので、まとめサイト作成中です。
https://symfo.web.fc2.com/

PR

検索フォーム

月別アーカイブ