テストデータとトレーニングデータの指定

現在,深層学習を使用したセマンティック セグメンテーションを参考にセマンティックセグメンテーションを行っています.
上の例では,学習データとテストデータを無作為に分類していますが,自分で用意したデータセットで解析するにあたって,
テストデータとトレーニングデータのフォルダを指定したいと考えているのですがどのように書き換えればいいのでしょうか?

 채택된 답변

Srivardhan Gadila
Srivardhan Gadila 2020년 11월 30일

0 개 추천

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개)

카테고리

도움말 센터File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

제품

릴리스

R2019b

질문:

2020년 11월 23일

답변:

2020년 11월 30일

Community Treasure Hunt

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

Start Hunting!