필터 지우기
필터 지우기

Is it possible to perform inverse prediction using a neural network using the Matlab Deep Learning toolbox?

조회 수: 13 (최근 30일)
This function allows for forward prediction of a neural network: https://www.mathworks.com/help/deeplearning/ref/predict.html
Is it possible to perform inverse prediction where the response is input to the trained network and an image is output?
I know it is mathamatically possible, however, is there an easy way to do this using the Matlab Deep Learning toolbox? Thanks!

답변 (1개)

Walter Roberson
Walter Roberson 2019년 5월 3일
Swap responses and inputs and train on that. There is no inherent reason why the number of outputs needs to be larger than the number of inputs.
However, this would be used for generating an image given the responses, rather that matching to find out which of a set of known input images comes closest to generating the known responses.
  댓글 수: 3
Walter Roberson
Walter Roberson 2019년 5월 9일
Deep Learning Toolbox used to be named Neural Network Toolbox, when it supported just the standard network types such as feed forward or perceptron. It was renamed once it started getting heavily involved in Recurrent networks and gpu training and the like.
The facilities available for the newer network types work fairly differently than the older types, and I do not know much about how they are put together.
predict() as a function is from the older network types. As best I recall, the older network types do not support configuring gradients for back propagation. I would not want to say it is not possible for sure, as perhaps there are hacks such as using custom transfer functions.
Greg Heath is the volunteer specialist for the older NN but he has cut back on his contributions and might not happen to notice this question.

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by