-
Notifications
You must be signed in to change notification settings - Fork 9
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
Vertex Identifying when inference time #11
Comments
Hi Sangmo, Yes, you can use a tracking algorithm to assign the same I hope this helps. Thank you, |
I really appreciate your tips, Kyle! I tried to extract feature maps with STE(resnet18-tsm-aug) weight you gave, I used I thought data loading technique can be little different with your TSM inference code,
Was there any slight modifiation to data loading, or It would be a big help if I could know there was something magic or my mistake. Best regards, |
Hello @GuSangmo, I'm also working on making this code for real-time purposes. Did you manage to do it ? |
@hugoobui In the case of GNN-postprocessing models(e.g. EASEE, SPELL), I thought bbox-tracking should be done in advance, to build the graph for postprocessing. And I couldn't reproduce those feature-encoder part ;-) My task was due 23 August, so there can be some improvements in this domain. |
Hi Kyle, thank you for such a nice paper!
I really learned a lot from your work.
Currently, I am trying to tune your model for inference in ASD task
(for random video, with no annotation about any bbox or entity)
As mentioned in #4 , this code assumes face bbox and audio-visual features
be detected by other models. (in this case, your model used 2DResNet with TSM for feature extraction)
I understood SPELL works on pre-built graph data, where vertex is identified with (video_id, entity_id, timestamp).
Could you give me some advice on how to get entity_id when inference?
I tried to integrate L186 ~ L223 of data_loader.py into inference loop
as you mentioned, but it seems to require entity_id for node.
I thought adding some tracker would help, but I am curious if modifying some of your codes might help this.
Thank you so much,
Sangmo
The text was updated successfully, but these errors were encountered: