Pre-training on Grayscale ImageNet Improves Medical Image Classification

Paper:http://openaccess.thecvf.com/content_ECCVW_2018/papers/11134/Xie_Pre-training_on_Grayscale_ImageNet_Improves_Medical_Image_Classification_ECCVW_2018_paper.pdf
Tips:ECCV2018的一篇paper。
(阅读笔记)

1. Main idea

  • 提出问题,医学图像的获取很困难。large medical image datasets appropriate for training deep neural network models from scratch are difficult to assemble due to privacy restrictions and expert ground truth requirements.
  • 一般的解决方法即是通过预训练一个其他的模型再微调。to pre-train models on large datasets in other domains, such as ImageNet for classification of natural images.
  • 再一次提出问题,Image-Net的图像都是三通道,而医学图像一般都是灰度单通道图像。However, ImageNet contains color images, which introduces artefacts and inefficiencies into models that are intended for single-channel medical images.
  • 所以提出了本文的idea。we pre-trained an Inception-V3 model on ImageNet after converting the images to grayscale through a common transformation.

2. Method

把Image-Net的图像转换成灰度图像后,用相同的参数喂入网络(仅改变通道数为1),得到预训练的模型,然后微调后实验效果很好。


Pre-training on Grayscale ImageNet Improves Medical Image Classification

相关文章:

  • 2021-08-06
  • 2021-10-14
  • 2021-10-19
  • 2021-10-12
  • 2021-10-18
  • 2022-12-23
  • 2022-12-23
  • 2021-07-17
猜你喜欢
  • 2021-04-25
  • 2022-01-07
  • 2021-12-24
  • 2021-08-11
  • 2021-05-08
  • 2021-05-12
相关资源
相似解决方案