YOLO V2 Training
조회 수: 1 (최근 30일)
이전 댓글 표시
I am following the instructions on MATLAB page to train a YOLO network: https://www.mathworks.com/help/vision/ug/train-an-object-detector-using-you-only-look-once.html
At this time, I am just try to reproduce the same network as in the example. I receive an error that the preprocessedValidationData f is not in the correct format in this part of the code:
options = trainingOptions('sgdm', ...
'MiniBatchSize',16, ....
'InitialLearnRate',1e-3, ...
'MaxEpochs',20,...
'CheckpointPath',tempdir, ...
'ValidationData',preprocessedValidationData);
댓글 수: 0
답변 (1개)
Pratyush Roy
2020년 12월 23일
Hi,
"preprocessedValidationData" is generated by the preprocessData function call on data and inputSize
preprocessedTrainingData = transform(augmentedTrainingData,@(data)preprocessData(data,inputSize));
preprocessedValidationData = transform(validationData,@(data)preprocessData(data,inputSize));
preprocessData is a supporting function that is defined above the references section in the doc page. So it has to be made sure that the supporting functions are defined in the same script so that the validation data can be generated properly.
Hope this helps!
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Recognition, Object Detection, and Semantic Segmentation에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!