see icon indicating copy to clipboard operation
see copied to clipboard

fsns problem

Open wushilian opened this issue 6 years ago • 9 comments

Hi,fsns has 4 views img,so how to deal 4 imgs by one network?

wushilian avatar Aug 01 '18 13:08 wushilian

Do you want to know how we deal with the 4 different views at the same time?

This is actually quite easy:

  1. we take the 4 views and split them into 4 different images
  2. those 4 different images are put into the feature extractor (CNN) as independent images
  3. after the extraction of features we fuse all 4 views together by concatenating them at the channel dimension (in our case dimension 1)
  4. We get a prediction using all 4 images at the same time =)

Bartzi avatar Aug 01 '18 13:08 Bartzi

@Bartzi Thank you very much,by the way,fsns has the blank label ‘ ’,How do you to deal with it?

wushilian avatar Aug 03 '18 02:08 wushilian

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 avatar Aug 03 '18 12:08 Bartzi

@Bartzi thank you very much!

wushilian avatar Aug 03 '18 12:08 wushilian

@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.

chunhui999 avatar Sep 26 '18 09:09 chunhui999

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?

Bartzi avatar Sep 26 '18 09:09 Bartzi

If convenient, I wanna know both, because I think it's a complete process.

chunhui999 avatar Sep 26 '18 09:09 chunhui999

We split the views here and reunite them here

Bartzi avatar Sep 26 '18 10:09 Bartzi

Thanks a lot.^_^

chunhui999 avatar Sep 27 '18 01:09 chunhui999