Multiple types of input into a deep learning model? #257
Replies: 1 comment 1 reply
-
Hi solarslurpi, I am not Daniel Bourke however I can give you maybe an example how you can achieve your goal (from my naive point of view).
Now how can be combine the information??? def forward(self, x,y): return self.classifier( self.flatten(combined_text_and_image, start_dim = suitable, end_dim = suitable)) Additional remarks:
PS: I hope this was helpful. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
A slide in the video shows an audio and a (Twitter text) text and an image being converted into a tensor to be provided as input into a deep learning model.
Yet, it seems example use one type of data. E.g.: image classification, NLP...etc.
Thus, it is unclear to me that there is a model that could be fit with both text and image? For example, say I wanted deep learning to determine if a plant has a Nitrogen deficiency. The text might be "overall yellowing of the lower leaves fairly rapidly getting yellow throughout the plant" and there could be a few images with a plant in this state.
How would I use both the image and the text with the effort to improve labeling? Thank you.
Beta Was this translation helpful? Give feedback.
All reactions