SydCaption / SAAT

MIT License
62 stars 21 forks source link

Many Thanks! #4

Closed AcodeC closed 4 years ago

AcodeC commented 4 years ago

 

SydCaption commented 4 years ago

Hi. your work is awesome. Now I have reproduce the SAAT result. I have noticed that there is a guidance from three syntax components (Trip-G) ablation study in your paper. But I do not find anything about (Trip-G) guidance in this code. Could you tell me how to do this ablation study? Thank you very much!

Hi, you can change the guiding signal by simply adjusting the 'pos' (Line437 in model_svo.py) or the 'svo_it' (Line439) variable~

SydCaption commented 4 years ago

Hi, the 'pos[:, 1:2]' means only using the 'verb' as guidance. For TripG, you can change it to 'pos[:, :]' so that the 'subject, verb, object' are all included.

AcodeC commented 4 years ago

Hi, the 'pos[:, 1:2]' means only using the 'verb' as guidance. For TripG, you can change it to 'pos[:, :]' so that the 'subject, verb, object' are all included.

Thank you very much