It might be a little weird question but I am a newbie to ML/DL. I am building a DL model that will classify X-ray images with pneumonia. I’ve read this paper (PDF) MedNet: Pre-trained Convolutional Neural Network Model for the Medical Imaging Tasks (researchgate.net) which introduces MedNet model. My question is, how can I access this model and use it for my project?
Hi @Mahmoud_Housam ,
Look for the official GitHub repositories associated with the paper.If it is not available publicly, consider alternative pre-trained models listed in the Github official Model Garden for checkpoints..
In the above list, you can use any general-purpose model with transfer learning. Using large models like ResNet or EfficientNet pre-trained on ImageNet can still be effective when fine-tuned for medical tasks.
Thanks.