cogstream-eval
CogStream: Context-guided Streaming Video Question Answering — Zhao et al. (2025) (arXiv:2506.10516, 2025)
What this evaluates
Evaluates a model's ability to perform question answering on streaming video by selectively retrieving and leveraging relevant historical context while ignoring irrelevant or noisy dialogue. It probes temporal reasoning, context awareness, and robustness to interference in long-form video understanding.
Datasets
Metrics
Average of IA, DC, CA, TP, LC (primary) — range: [0, 100]
- Average of five LLM-based scores: Information Accuracy (IA), Detail Completeness (DC), Context Awareness (CA), Temporal Precision (TP), and Logical Consistency (LC). Each metric is scored on a 0–100 scale by an LLM judge, and the final score is the arithmetic mean of the five.
Input / output format
Input: A video segment (typically sampled at 20 fps or 1 fps depending on the model) interleaved with historical question-answer pairs, followed by a natural language question about the current video content.
Output: A natural language text answer generated by the model.
Scoring recipe
def score(predictions, golds, llm_judge):
scores = []
for pred, gold in zip(predictions, golds):
ia = llm_judge.evaluate(pred, gold, criterion="IA")
dc = llm_judge.evaluate(pred, gold, criterion="DC")
ca = llm_judge.evaluate(pred, gold, criterion="CA")
tp = llm_judge.evaluate(pred, gold, criterion="TP")
lc = llm_judge.evaluate(pred, gold, criterion="LC")
scores.append((ia + dc + ca + tp + lc) / 5.0)
return sum(scores) / len(scores)
Common pitfalls
- Frame sampling rates are not standardized across all baselines (e.g., 20 frames/segment vs. 1fps vs. 50 max), which can artificially inflate or deflate performance.
- LLM-based scoring relies heavily on the prompt template and judge model version; minor prompt changes can shift scores significantly.
- The hierarchical task breakdown (Basic/Streaming/Global) requires strict adherence to context-retrieval protocols; models that ingest all history without filtering often degrade on Streaming/Global tasks due to noise.
Evidence (verbatim from paper)
Inspired by SVbench, we enhance the LLM-based VQA metric (GPT4-score) for evaluation. We introduce the following metrics: Information Accuracy (IA), Detail Completeness (DC), Context Awareness (CA), Temporal Precision (TP), and Logical Consistency (LC). Each is scored between 0 and 100, and we report their average. See our Appendix for details of these metrics.
Citation
@misc{zhao2025cogstream,
title={CogStream: Context-guided Streaming Video Question Answering},
author={Zhao et al. (2025)},
year={2025},
note={arXiv:2506.10516}
}
1---2name: cogstream-eval3description: Evaluates a model's ability to perform question answering on streaming video by selectively retrieving and leveraging relevant historical context while ignoring irrelevant or noisy dialogue. It probes temporal reasoning, context awareness, and robustness to interference in long-form video understanding. Use when the user wants to benchmark on CogStream, or asks about evaluating this task. Reports Average of IA, DC, CA, TP, LC.4---56# cogstream-eval78> CogStream: Context-guided Streaming Video Question Answering — Zhao et al. (2025) (arXiv:2506.10516, 2025)910## What this evaluates1112Evaluates a model's ability to perform question answering on streaming video by selectively retrieving and leveraging relevant historical context while ignoring irrelevant or noisy dialogue. It probes temporal reasoning, context awareness, and robustness to interference in long-form video understanding.1314## Datasets1516- **CogStream** — total ?; splits: train (-1), test (-1); repo https://github.com/LiamZhao326/CogStream1718## Metrics1920- `Average of IA, DC, CA, TP, LC` **(primary)** — range: [0, 100]21 - Average of five LLM-based scores: Information Accuracy (IA), Detail Completeness (DC), Context Awareness (CA), Temporal Precision (TP), and Logical Consistency (LC). Each metric is scored on a 0–100 scale by an LLM judge, and the final score is the arithmetic mean of the five.2223## Input / output format2425**Input**: A video segment (typically sampled at 20 fps or 1 fps depending on the model) interleaved with historical question-answer pairs, followed by a natural language question about the current video content.2627**Output**: A natural language text answer generated by the model.2829## Scoring recipe3031```python32def score(predictions, golds, llm_judge):33 scores = []34 for pred, gold in zip(predictions, golds):35 ia = llm_judge.evaluate(pred, gold, criterion="IA")36 dc = llm_judge.evaluate(pred, gold, criterion="DC")37 ca = llm_judge.evaluate(pred, gold, criterion="CA")38 tp = llm_judge.evaluate(pred, gold, criterion="TP")39 lc = llm_judge.evaluate(pred, gold, criterion="LC")40 scores.append((ia + dc + ca + tp + lc) / 5.0)41 return sum(scores) / len(scores)42```4344## Common pitfalls4546- Frame sampling rates are not standardized across all baselines (e.g., 20 frames/segment vs. 1fps vs. 50 max), which can artificially inflate or deflate performance.47- LLM-based scoring relies heavily on the prompt template and judge model version; minor prompt changes can shift scores significantly.48- The hierarchical task breakdown (Basic/Streaming/Global) requires strict adherence to context-retrieval protocols; models that ingest all history without filtering often degrade on Streaming/Global tasks due to noise.4950## Evidence (verbatim from paper)5152> Inspired by SVbench, we enhance the LLM-based VQA metric (GPT4-score) for evaluation. We introduce the following metrics: Information Accuracy (IA), Detail Completeness (DC), Context Awareness (CA), Temporal Precision (TP), and Logical Consistency (LC). Each is scored between 0 and 100, and we report their average. See our Appendix for details of these metrics.5354## Citation5556```bibtex57@misc{zhao2025cogstream,58 title={CogStream: Context-guided Streaming Video Question Answering},59 author={Zhao et al. (2025)},60 year={2025},61 note={arXiv:2506.10516}62}63```6465- arXiv: 2506.10516