필터 지우기
필터 지우기

How to assign labels to a dataset using 'signalDatastore' object?

조회 수: 20 (최근 30일)
BIPIN SAMUEL
BIPIN SAMUEL 2024년 6월 24일 13:49
댓글: BIPIN SAMUEL 2024년 6월 25일 10:40
I have a dataset in a folder for classification purpose using crossentropy as loss function in deep learning. I need to add labels to my dataset. How can I do this? Whether signalDatastore object helps to assign labels like imageDatastore object?

답변 (1개)

dpb
dpb 2024년 6월 24일 15:49
Not at all sure about what you mean by "object helps to assign labels like imageDatastore object".
signalDatastore <example> illustrates picking two variables out of a set of files; it does require you know what the desired variable names from the files are, but that seems like something would have to know, anyway.
But, there's also an example of programmatically return variable names from a .mat or text file under the SignalVariableNames parameter for files.
  댓글 수: 1
BIPIN SAMUEL
BIPIN SAMUEL 2024년 6월 25일 10:40
Thank You @dpb for the response.
ds = imageDatastore(filefolder,...
'IncludeSubfolders',true,...
'LabelSource','foldernames');
Here the labels are assinged using the 'foldernames'. So, we are not needed to provide the target data (labels) separately. Is it possible to use "signalDatastore" or "arrayDatastore" like this? So, that we can use the network for classification using crossentropy as loss function. Moreover, I have one more query. Whether it is possible to use the function trainNetwork() to train a network with two inputs i.e, one with sequential data and other with its features. Like an example shown here. But here trainnet() is used for training. Since I am using Matlab 2023a version this function is not available.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Data Workflows에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by