필터 지우기
필터 지우기

how to create a dlarray of shape=(n,m,1)

조회 수: 3 (최근 30일)
bethel o
bethel o 2023년 7월 9일
댓글: Katja Mogalle 2023년 7월 17일
I am trying to load a tensorflow model into matlab.
I am trying to call initialize on the imported tensorflow model in matlab and I am getting this error:
-----------------------------------
Warning: Invalid input data for 'normalization_1_input'
Layer 'normalization_1_input' expects input data of size [1 40 1] and format 'UUU', but the input
data has size [1 1 40] and format 'CBT'.
----------------------------------
How can I create a dlarray of shape=(1,40,1) to pass input to the model?
  댓글 수: 1
Katja Mogalle
Katja Mogalle 2023년 7월 17일
To create a dlarray of size [1 40 1] with format 'UUU' you can use the following code:
X = dlarray(ones(1,40,1),'UUU');
If you are using the initialize function for dlnetworks, you can also create a networkDataLayout object as follows:
X = networkDataLayout([1 40 1],'UUU');
net = initialize(net,X);
If this doesn't resolve your issue, could you share your model please?

댓글을 달려면 로그인하십시오.

답변 (0개)

카테고리

Help CenterFile Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기

제품


릴리스

R2023a

Community Treasure Hunt

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

Start Hunting!

Translated by