Views
No views yet
| videos | captioned segments | |
|---|---|---|
| train | 296 | 2,354 |
| val | 52 | 379 |
| test | 88 | 617 |
| R@1 | R@5 | R@10 | median rank | |
|---|---|---|---|---|
| text to video | 0.418 | 0.723 | 0.818 | 2 |
| video to text | 0.476 | 0.786 | 0.882 | 2 |
evaluation.py computes its r10 as ranks < 50 in all four of
its ranking functions -- a commented-out print in the same file labels that value
"Ranks@50" -- so an R@10 reported by that code is an R@50 and is not comparable to
the column above.1from fga.tasks.video_retrieval import VideoMatchModel
2
3model = VideoMatchModel.from_pretrained("Idan/fga-video-retrieval")
4scores = model(caption_input_ids=text, video_features=video).logits1@inproceedings{ali2022video,
2 title={Video and Text Matching with Conditioned Embeddings},
3 author={Ali, Ameen and Schwartz, Idan and Hazan, Tamir and Wolf, Lior},
4 booktitle={IEEE/CVF Winter Conference on Applications of Computer Vision},
5 year={2022}
6}
7
8@inproceedings{schwartz2019factor,
9 title={Factor graph attention},
10 author={Schwartz, Idan and Yu, Seunghak and Hazan, Tamir and Schwing, Alexander G},
11 booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
12 pages={2039--2048},
13 year={2019}
14}
15
16@inproceedings{zhou2018towards,
17 title={Towards Automatic Learning of Procedures from Web Instructional Videos},
18 author={Zhou, Luowei and Xu, Chenliang and Corso, Jason J},
19 booktitle={AAAI Conference on Artificial Intelligence},
20 year={2018}
21}