How to simulate trained networks?

조회 수: 5 (최근 30일)
Yanuar Rizki Pahlevi
Yanuar Rizki Pahlevi 2020년 10월 15일
댓글: Yanuar Rizki Pahlevi 2020년 11월 11일
Hi guys, I am trying to feed my trained networks with some data. I want to make a plot from its output
clear;
clc;
load network1
layers_encode(1)=network1.Layers(1);
layers_encode(2)=network1.Layers(2);
layers_encode(3)=network1.Layers(3);
layers_encode(4)=network1.Layers(4);
layers_encode(5)=network1.Layers(5);
layers_encode(6)=regressionLayer;
net_encode=assembleNetwork(layers_encode);
[xTrain, tTrain, xValid, tValid, xTest, tTest] = LoadMNIST(3);
xTrain= mat2gray(reshape(xTrain, [28*28 50000]));
inputs=xTrain(:,1:1000);
nInput=size(inputs,2);
[Y]=sim(net_encode, inputs);
scatterplot(Y) %i'd like to compare the input and the output with scatterplot
scatterplot(inputs)
but I cannot get the output.
i tried using [Y]=sim(net,x) but matlab gives 'model' parameter must be a character vector
y=net_code(inputs), matlab gives Array indices must be positive integers or logical values.
anybody knows what should I do?

답변 (1개)

Shraddha Jain
Shraddha Jain 2020년 11월 11일
Hi Yanuar,
I understand that you are facing issues while performing regression on input images using the method,
Y = sim(net_encode, inputs)
However, I am not able to reproduce the error at my end. For in-depth understanding of the issue, could you share the network1 or the details of it.
Meanwhile, you may try using the predict method available in Deep Learning Toolbox as,
Y = predict(net_encode, inputs)
This method predicts responses using a trained deep learning neural network on image data as well. Please refer to this documentation for more information on predict method.
  댓글 수: 1
Yanuar Rizki Pahlevi
Yanuar Rizki Pahlevi 2020년 11월 11일
in the end I did used predict and got the answer. thanks for looking at this question!

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

카테고리

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

제품

Community Treasure Hunt

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

Start Hunting!

Translated by