gsig / actor-observer

ActorObserverNet code in PyTorch from "Actor and Observer: Joint Modeling of First and Third-Person Videos", CVPR 2018
GNU General Public License v3.0
76 stars 9 forks source link

What's the difference between “same person ”and "different person" in paper? #8

Open yuhuangyue opened 5 years ago

yuhuangyue commented 5 years ago

Hi! What's the difference between “same person ”and "different person" in paper? image

gsig commented 5 years ago

"Same person" uses the CharadesEgo_v1 data as is. That is, the third person video and the first person video are from the same person. Both of those videos are in the same .csv file, where the 1st person video has the ending "EGO".

"Different persons" uses the column "charades_video" to link the original 3rd person video in Charades_v1, to the 1st person video in CharadesEgo_v1 (same script), so the 3rd person video in CharadesEgo_v1 is not used.

Hope that helps!

yuhuangyue commented 5 years ago

thank you!