Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Question about some part of the architecture #8

Closed
ghost opened this issue Dec 25, 2022 · 1 comment
Closed

Question about some part of the architecture #8

ghost opened this issue Dec 25, 2022 · 1 comment

Comments

@ghost
Copy link

ghost commented Dec 25, 2022

I read your 'AGRL' paper many times but I don't understand some parts of it, could you please help me to understand it better

First of all, what do the 'global branch' do and why you use it?
Secondly, after conv5, there is no image, we have some features instead, how did you apply pyramid pooling and match the joints(extracted joints by AlphaPose) in the regions? because in the feature maps the location of joints are not the same as original images.
Third, what is 'N' in the input? If it is the number of regions in the input, there is no region before pyramid pooling I don't understand.

@weleen
Copy link
Owner

weleen commented Jan 4, 2023

@Lisa9797 Thanks for your questions.

  1. Global Branch aims to capture the global information, and Graph Branch aims to capture the part-level information. The pooling modules (GAP vs. Pyramid Pooling) are different in these two branches.
  2. As claimed in Section III.A, features output from res_conv5 is a $N\times T\times D \times h \times w$-dim feature maps, pyramid pooling is applied on the last two dimensions, we can get $N\times T\times D \times 7$-dim features. As for the location of joints, we roughly assign each region a human part label (Please see Figure 3 as an example).
  3. As described in the caption of Figure 2, N is the number of regions for an individual image, which is defined as 7 in our paper.

@weleen weleen closed this as completed Dec 5, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant