Is there a 'Pixel classification layer' equivalent for 1 dimensional vector 'Deep Network Designer'?
조회 수: 1 (최근 30일)
이전 댓글 표시
I am trying to test a theory where my input is a 1-dimensional vector with N elements. I wanto to use an 'Auto-encoder' like network structure to compute a new N element vector which should ideally match the output sequence. Also, each one of the N outputs can belong to one of three classes. Is there a way to do this?
댓글 수: 0
답변 (1개)
Raunak Gupta
2020년 8월 7일
편집: Raunak Gupta
2020년 8월 7일
Hi,
There is 1-D convolutional layer which you can build using the methods described here and here. This way a encoder and decoder network can be built in 1-D. After that you can attach pixel classification layer at the end to complete the workflow. Since the output size is calculated automatically by pixelClassificationlayer, the 1-D input size will also work (Make sure to give appropriate batch size too). Using 1-D convolutional layer described in above answers you can build the autoencoder model.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Deep Learning Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!