see
see copied to clipboard
fsns problem
Hi,fsns has 4 views img,so how to deal 4 imgs by one network?
Do you want to know how we deal with the 4 different views at the same time?
This is actually quite easy:
- we take the 4 views and split them into 4 different images
- those 4 different images are put into the feature extractor (CNN) as independent images
- after the extraction of features we fuse all 4 views together by concatenating them at the channel dimension (in our case dimension 1)
- We get a prediction using all 4 images at the same time =)
@Bartzi Thank you very much,by the way,fsns has the blank label ‘ ’,How do you to deal with it?
do you have problems with the blank label as the result of your prediction? If so, you can just strip this label from your predicted word.
@Bartzi thank you very much!
@Bartzi Hi, could you tell me where can I find the code about the way to deal with the 4 different views at the same time? Thank you.
Which part are you interested in? The part where we split the input image into 4 independent images, or the part where the features of all four images are fused together?
If convenient, I wanna know both, because I think it's a complete process.
Thanks a lot.^_^