How we do transfer learning using pretrained models with grey scale images as input
7 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
RAJESH RAJAN
el 5 de Mzo. de 2019
Respondida: Abhishek Singh
el 8 de Mzo. de 2019
if we planned to do a training using greyscale images with pretrained model. It will show error. Is there is any method to train these type of images. That means apart from RGB images, how we do the transfer learning
0 comentarios
Respuesta aceptada
Abhishek Singh
el 8 de Mzo. de 2019
There might be many ways to go about it:
1. Copy and stack the image matrix three times to replicate the 3 channels of RGB
2. Stack two zero or identity matrices on top of the grey image matrix such that the Red channel has all the data and the other two channels are just place holders (not advisable)
3. Remove the other channel weights in the pre-trained model itself (very cumbersome)
This is an open-ended problem with many other creative solutions like using DeOldify GAN to color them first or just interpolating the other two channels in some way. The way to find the best solution would be to experiment with your data and pre-trained architecture
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Deep Learning Toolbox en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!