Train images using DNN using Label as CSV file
1 次查看(过去 30 天)
显示 更早的评论
I want to train fundus images (available at kaggle websie for diabetic retinopathy) using pretrained neural network. Dataset consist of images and labels are available in csv file. Kindly guide how can i load images and provide lables as csv file in matlab. Waiting for seniors favorable reply
0 个评论
回答(1 个)
Mohammad Sami
2020-7-17
编辑:Mohammad Sami
2020-7-17
From your question it seems like you want to do transfer learning. Matlab documentation provide a detailed guide on how to do transfer learning. You can check it out here.
If you are new to this area I will also suggest you to do free online training provided here:
2 个评论
Mohammad Sami
2020-7-20
You will have to manually set the Labels property in that case.
Make sure your Labels are in the same order as Files property.
The best way would be your csv contains the Files as one column.
% labelsdata = readtable('labels.csv');
[match,index] = ismember(labelsdata.Files,imds.Files);
if ~all(match)
warning('Not all the files have labels');
end
imds.Labels(match) = labelsdata.Labels(index(match));
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Get Started with Statistics and Machine Learning Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!