テストデータとトレーニングデータの指定
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Kodai Sato
el 23 de Nov. de 2020
Respondida: Srivardhan Gadila
el 30 de Nov. de 2020
上の例では,学習データとテストデータを無作為に分類していますが,自分で用意したデータセットで解析するにあたって,
テストデータとトレーニングデータのフォルダを指定したいと考えているのですがどのように書き換えればいいのでしょうか?
0 comentarios
Respuesta aceptada
Srivardhan Gadila
el 30 de Nov. de 2020
Change the outputFolder variable to the location of your dataset:
outputFolder = 'path to your dataset';
Let's say that within that folder, the images and stored in folder called "images" and labels in folder called "labels"
imgDir = fullfile(outputFolder,'images');
imds = imageDatastore(imgDir);
labelDir = fullfile(outputFolder,'labels');
The classes may change in your case, so you have to make changes accordingly and use the pixelLabelDatastore to load the labels.
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Pattern Recognition and Classification 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!