catr icon indicating copy to clipboard operation
catr copied to clipboard

About the model explanation

Open ohwi opened this issue 3 years ago • 9 comments

Hi. Thank you for your impressive work.

I've read your work and want to understand your model clearly.

From #2 , I know there is no paper, but I found similar paper with your work.

Does the figure below explain your work?

image

Thank you!

ohwi avatar Mar 17 '21 11:03 ohwi

I saw little difference at the backbone. The paper uses ViT and this work uses CNN.

ohwi avatar Mar 17 '21 12:03 ohwi

Hey, Thanks for the feedback.

This work is inspired from Facebook AI's (Detection Transformer) which aims to do object detection with transformers.

The paper you've enclosed is very recent work on this similar topic, but they have not provided any implementation.

saahiluppal avatar Mar 17 '21 14:03 saahiluppal

Thank you for your reply.

I think I understand the structure of your work. Thank you!!

ohwi avatar Mar 17 '21 15:03 ohwi

Hi @saahiluppal, I am trying to understand where the object detection part is occurring in the code, and what exact algorithm you're using.

parthskansara avatar Mar 28 '21 13:03 parthskansara

Hey, The model is not doing Object Detection at any phase.

Image is fed to a resnet and this backbone will give us the feature embedding along with the corresponding mask for the image. Then these features and mask are fed to the transformer, and the rest is handled by attention.

That is the versatility of attention mechanism.

saahiluppal avatar Mar 29 '21 15:03 saahiluppal

PS: Recent research shows that doing "Object Detection" prior to "Image Captioning" doesn't bring any additional improvement, instead it will just increase complexity.

saahiluppal avatar Mar 29 '21 15:03 saahiluppal

PS: Recent research shows that doing "Object Detection" prior to "Image Captioning" doesn't bring any additional improvement, instead it will just increase complexity.

Hi. Would you let me know what is the paper you referenced? Thank you.

ohwi avatar Apr 01 '21 01:04 ohwi

I've read it in ablation studies of some paper, not sure which paper. I'll share the name of the paper as soon as i come across it again.

saahiluppal avatar Apr 01 '21 05:04 saahiluppal

Have you found which paper the structure of this code refers to?Thanks

Tough-Stone avatar Oct 29 '22 03:10 Tough-Stone