필터 지우기
필터 지우기

CUDNN_STAT​US_EXECUTI​ON_FAILED while using convolution2dLayer with 2D image sequence(SSCBT)

조회 수: 1 (최근 30일)
lgraph = [...
sequenceInputLayer([64 5 1], "MinLength",4)
% convolution2dLayer([3,3],1) % If include this conv2d layer cause
% ERROR CUDNN_STATUS_EXECUTION_FAILED
flattenLayer
gruLayer(16)
fullyConnectedLayer(16)
fullyConnectedLayer(2)
softmaxLayer
classificationLayer
]
If include `convolution2dLayer` will throw ERROR:
Unexpected error calling cuDNN: CUDNN_STATUS_EXECUTION_FAILED
lgraph = [...
sequenceInputLayer([64 5 1], "MinLength",4)
sequenceFoldingLayer('Name','fold')
convolution2dLayer([3,3],1)
sequenceUnfoldingLayer('Name','unfold')
flattenLayer
gruLayer(16)
fullyConnectedLayer(16)
fullyConnectedLayer(2)
softmaxLayer
classificationLayer
]
lgraph = connectLayers(lgraph,'fold/miniBatchSize','unfold/miniBatchSize');
I try to add sequenceFoldingLayer and sequenceUnfoldingLayer, the ERROR still exists.
Any help is greatly appreciated.

채택된 답변

Xie Shipley
Xie Shipley 2023년 11월 17일
If there are someone can tell me can this Video Classification example in MATLAB doc run on GPU ?

추가 답변 (0개)

카테고리

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

태그

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by