for Single Image Super-Resolution”)で用いられた「self-ensemble」を実施。 3. self-ensemble手法を使ってAugmentしたデータセットを使って、HAT 5倍モデルをスクラッチ学 習。推論時もself-ensemble 4. cutblur(EDSR) 。5倍で学習。 5. HAT構造をGPUメモリに載るギリギリのサイズに大きくし、Augmentしたデータセットで学習。 • アンサンブルは各ピクセルを平均 for n in filenames: imgs = [] for d in target_dir: img_path = osp.join(d,n) imgs.append(cv2.imread(img_path)) avg_img = np.sum(imgs, axis=0)/len(target_dir) avg_img = avg_img.astype(int) cv2.imwrite(osp.join(output_dir, n), avg_img)