how to use parallel computing with train faster rcnn detector.
정보
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
이전 댓글 표시
Hi, I'm trying to use matlab to train my own data set using train faster rcnn function, but when I tried to enable the parallel computing by applying it in the options : optionsStage1 = trainingOptions('sgdm', ... 'MaxEpochs', 10, ... 'InitialLearnRate', 1e-5, ... 'ExecutionEnvironment','parallel',... 'CheckpointPath', 'D:\hope\checkpoint');
% Options for step 2. optionsStage2 = trainingOptions('sgdm', ... 'MaxEpochs', 10, ... 'ExecutionEnvironment','parallel',... 'InitialLearnRate', 1e-5, ... 'CheckpointPath', 'D:\hope\checkpoint');
% Options for step 3. optionsStage3 = trainingOptions('sgdm', ... 'MaxEpochs', 10, ... 'InitialLearnRate', 1e-6, ... 'ExecutionEnvironment','parallel',... 'CheckpointPath', 'D:\hope\checkpoint');
% Options for step 4. optionsStage4 = trainingOptions('sgdm', ... 'MaxEpochs', 10, ... 'InitialLearnRate', 1e-6, ... 'ExecutionEnvironment','parallel',... 'CheckpointPath', 'D:\hope\checkpoint');
options = [ optionsStage1 optionsStage2 optionsStage3 optionsStage4 ];
I'm getting this error message: Error using vision.internal.cnn.parseInputsFasterRCNN>iCheckExecutionEnvironment (line 433) The value of 'options.ExecutionEnvironment' must be 'auto', 'cpu', or 'gpu'. 'multi-gpu' and 'parallel' are not supported.
could you please help me in this part as soon as possible.
댓글 수: 0
답변 (0개)
이 질문은 마감되었습니다.
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!