Forward outputs from discriminator of GAN vary with the number of inputs.

조회 수: 2 (최근 30일)
I'm using MATLAB R2019b, and deep learning toolbox.
I wanna see sigmoid value of outputs from discriminator, but it vary with the number of inputs in dlarray.
For example,
I assigned input data X (size 1024,1,1,3) to dlX which is dlarray(X, 'SSCB')
--- dlX=dlarray(X,'SSCB');
so prediction can be extracted by calling function dlYPred=forward(dlnetDiscriminator, dlX), and out=sigmoid(dlYPred)
--- dlYPred=forward(dlnetDiscriminator, dlX);
--- out=sigmoid(dlYPred);
I got output from this process. -> (0.1, 0.3, 0.5)
But if i assign input data X (size 1024,1,1,5) that includes previous three data, results is changed.
like (0.2 0.4 0.7 0.3 0.1) although first three output should not be changed.
I wanna get data like (0.1 0.3 0.5 0.2 0.02)
How can i solve it?

채택된 답변

Sourav Bairagya
Sourav Bairagya 2020년 1월 7일
It seems that the discriminator layer weights get chnaged during second time calling of "forward" function. Make sure that the discriminator layer weights are kept fixed while running "foward" function for second time.
You can also use "predict" function to compute the responses out of the trained network.

추가 답변 (0개)

카테고리

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

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by