how can i input two inputs to the deep network, one from the imageinputlayer and the other from featureinputlayer

조회 수: 3 (최근 30일)
how can i input the images and the extracted features by one of the algorithms to a deep network
this example shows how can i build the structure of the network with an input layer and feature input layer
but how i can train the network with the two inputs???
  댓글 수: 2
Nagwa megahed
Nagwa megahed 2022년 3월 8일
two variables ( one is an image datastore and the other is an a table (or array ) with set of features that represent each image)

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

답변 (1개)

Mahesh Taparia
Mahesh Taparia 2022년 3월 8일
Hi
You can refer to this example which shows how to combine image and features and then pass it to a CNN. It create a dlnet object which you can train it using custom training loop. For more information, you can refer to this documentation. Hope it will help!
  댓글 수: 2
Nagwa megahed
Nagwa megahed 2022년 3월 8일
Dear sir, thanx for your answer
but i already build the network and combined the input layer with a feature input layer but i ask how can i train the network with two inputs , to train a network you should determine a single input , this input may be an image datastore or image features
my question is how to combine two inputs(image+features) in a single input or if there is another way to choose two inputs for the network
Mahesh Taparia
Mahesh Taparia 2022년 3월 10일
Hi
You can concatenate the image and features in the channels. For example if you have images of size MxNxZ and features of size MxNxK, then concatenate into mxnx(Z+K) size and pass in to network.

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

카테고리

Help CenterFile Exchange에서 AI for Signals and Images에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by