Split data set into training and test set however labels not linked to imds
3 次查看(过去 30 天)
显示 更早的评论
I have a dataset of images (tiff files) and a seperate Labels.mat file containing the labels 1 or 0. I want to split the dataset into a training and test set however i dont know how to couple the labels to the imds. Can someone help me to create the training and test set?
0 个评论
回答(1 个)
Amey Waghmare
2023-1-4
Hi,
As per my understanding, you have a dataset of images and a separate labels file and want to couple the labels with the images so as to split the dataset into training and test set.
After creating the Image Datastore ‘imds’, the labels for the files can be set using the ‘Labels’ property of the datastore as follows,
imds.Labels = label
This would link the labels to the images in the datastore. The ‘label’ for the files can be specified as a vector, a cell array or a string array.
For more information, please refer to the Image datastore documentation: https://in.mathworks.com/help/matlab/ref/matlab.io.datastore.imagedatastore.html
0 个评论
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!