I am working on a deep learning model for detecting lung cancer from lung CR images. I know that instead of creating a new model from scratch, I can use pretrained models like InceptionV3 for faster training and/or better performance.
But since most of these models are trained on ImageNet data-set, would they prove to be useful for classifying medical image data-sets like lung CR images?
Also, would cutting off/freezing the final layers and training them with my data-set work in this scenario?
Edit: I found a model called as niftynet that is specifically for medical image analysis, but my main question here is whether these popular models could be successfully used for transfer learning of medical image data-sets?