LiveStarPro: Proactive Streaming Video Understanding with Hierarchical Memory for Long-Horizon Streams
Abstract: Despite the remarkable progress of Video LLMs (Video-LLMs), current online architectures still struggle to simultaneously process continuous video streams, decide autonomously when to respond, and preserve long-horizon contextual memory. These obstacles undermine real-time responsiveness and cause severe forgetting throughout prolonged interactions. In this work, we introduce LiveStarPro, a live streaming assistant that is designed for proactive video understanding over long-horizon streams. The design of LiveStarPro rests on three complementary components. The first component is Streaming Verification Decoding (SVeD), an inference framework that identifies the appropriate response timing through single-pass perplexity verification, thereby eliminating the dependency on explicit silence tokens. The second component is Streaming Causal Attention Masks (SCAM), a training strategy that enforces incremental video-language alignment over variable-length streams. The third component is Tree-Structured Hierarchical Memory (TSHM), a recursive memory architecture that organizes evicted historical information into event chains and consequently enables efficient retrieval from effectively unbounded video streams. To facilitate a comprehensive evaluation under realistic online conditions, we further present OmniStarPro, a large-scale benchmark that spans 15 diverse real-world scenarios and that extends to hour-scale streams for the assessment of long-term recall. Extensive experiments demonstrate that LiveStarPro consistently surpasses existing methods, attaining a 28.9% improvement in semantic correctness and an 18.2% reduction in timing error, while its streaming key-value cache further yields a 1.58x inference speedup over the same model without caching. The model and the code are publicly available at https://github.com/sotayang/LiveStarPro.
Paper Prompts
Sign up for free to create and run prompts on this paper using GPT-5.
Top Community Prompts
Explain it Like I'm 14
Explaining โLiveStarPro: Proactive Streaming Video Understanding with Hierarchical Memory for Long-Horizon Streamsโ
What is this paper about?
This paper introduces LiveStarPro, an AI system that can watch a live video stream and talk about whatโs happening in real time. Itโs designed to:
- Decide on its own when to speak and when to stay quiet.
- Keep track of what happened a long time ago in the video, even if the video goes on for an hour or more.
- Work across many real-world situations, like sports, cooking, or news.
What questions are the researchers trying to answer?
The paper focuses on two big questions:
- How can an AI know the right moment to respond during a live video (instead of talking too often or not at all)?
- How can the AI remember important events from very long videos without forgetting earlier parts or running out of memory?
They also ask: how can we train and test such a system fairly across many real-world tasks and long videos?
How does LiveStarPro work? (Methods explained simply)
Think of LiveStarPro like a thoughtful sports commentator who:
- Watches the game carefully,
- Speaks only when thereโs something new or important,
- Remembers key plays from earlier, and
- Keeps notes organized in a way thatโs easy to revisit later.
It has three main ideas:
- Streaming Verification Decoding (SVeD): โCheck before you speakโ
- Instead of guessing silence or talking for every frame, the system checks if what it said last time still fits the new video frames.
- It uses a โsurprise scoreโ (called perplexity) to see if the old description still makes sense. If the surprise score jumps, that means something new happenedโtime to talk again. If not, it stays quiet.
- This uses a single quick check, so itโs fast and avoids repeating info.
- Streaming Causal Attention Masks (SCAM): โLearn to pay attention to whatโs newโ
- During training, the model sees frames and captions mixed together in order, like a live timeline.
- The trick: itโs โmaskedโ so it canโt just copy earlier captions when the scene hasnโt changed. It must look at the current frame to speak.
- This teaches it to align changes in the video with the right words over time.
- Tree-Structured Hierarchical Memory (TSHM): โRemember like a highlight reel + family treeโ
- Short-term memory (โhighlight reelโ): The model keeps the most important frames (โpeaksโ) and the final summary for each short event (โendโ), inspired by how people remember highlights and endings.
- Long-term memory (โfamily treeโ): Older events are stored in a tree structure where similar events are linked as parent and child. This makes it easy to find related past moments without scanning everything.
- When it needs to recall, it searches down the most promising branches (like following a path to the closest match), which is faster than checking everything.
The system also uses a โcacheโ (like quick notes) so it doesnโt re-calculate the same things over and over, making it run faster.
What did they build to train and test it?
They created a new benchmark and dataset called OmniStarPro:
- It covers 15 different real-world scenarios (not just one kind of video).
- It includes both short videos and long videos (10 minutes to over an hour).
- It tests not only question answering, but also live narration, grounding events in time, and multi-turn interactions.
- The videos are carefully filtered for quality and are annotated by experts to ensure accuracy.
What did they find, and why does it matter?
LiveStarPro outperformed other online video systems:
- It increased โsemantic correctnessโ (saying the right thing at the right time) by 28.9% on average.
- It reduced timing mistakes (speaking too early or too late) by 18.2%.
- With its streaming cache, it ran about 1.58ร faster than the same model without caching.
- It handled long videos better by remembering and retrieving past events coherently, without flooding its โworking memory.โ
Why this matters:
- Live video assistants can now narrate more naturally, like a smart, polite co-hostโspeaking when useful, staying quiet otherwise.
- It helps in scenarios like live sports commentary, classroom demonstrations, cooking streams, wearable-camera guidance, and security monitoring.
- It shows a practical way to handle never-ending streams without forgetting important earlier moments.
Whatโs the bigger impact?
- More helpful live AI: Systems can offer timely, meaningful updates instead of constant chatter or silence.
- Better long-term reasoning: The memory design means AI can connect โwhatโs happening nowโ with โwhat happened an hour ago.โ
- Stronger evaluation: The new dataset encourages research on realistic, long, and varied video tasksโnot just short clips or simple questions.
- Foundation for future tools: This work could power smarter live assistants for creators, teachers, athletes, and everyday users.
In short, LiveStarPro is a step toward AI that watches videos like a thoughtful humanโnoticing whatโs new, remembering what matters, and speaking up at just the right time.
Knowledge Gaps
Knowledge gaps, limitations, and open questions
Below is a single, concrete list of what remains missing, uncertain, or unexplored, focusing on issues future researchers can address.
- Calibration of SVeDโs verification gate: How to robustly set and adapt the perplexity scaling threshold (ฮฑ) across domains, caption lengths, paraphrasing variability, and model sizes without manual tuning or performance regressions.
- Sensitivity of PPL as a salience/verification signal: Whether perplexity is the best proxy for โsemantic divergenceโ and โpeakโ selection; comparative studies with alternative signals (e.g., token-level entropy, contradiction scores, learned confidence models, CLIP/BLIP similarity).
- Stability under language variability: How paraphrase diversity, tokenization, and style differences affect SVeDโs PPL thresholds and temporal gating behavior over long streams.
- Interaction between retrieval and gating: Adding retrieved tokens alters the context distribution and may shift PPL; the paper does not analyze whether retrieval-induced context changes destabilize SVeDโs silence/response decisions.
- Swap operation side effects: The โSwapโ that moves the last caption to the end of context may extend outdated descriptions; conditions under which this causes stale or partially false narration are not quantified.
- Frame-rate and load scaling: Latency/throughput are reported as relative speedups, but absolute end-to-end latency, throughput at common rates (e.g., 15โ30 FPS), and GPU/CPU/memory footprints under different hardware are not provided.
- Robustness to extreme streaming conditions: Behavior under high-motion blur, low light, compression artifacts, overlays, or camera shake (which were filtered out during dataset construction) remains untested.
- Audio modality exclusion: The model and dataset explicitly avoid dense audio; how to integrate speech, sound events, or ASR for richer online understanding is left open.
- Multilingual and cross-lingual handling: The dataset relies on YouTube and Whisper-based filtering but does not evaluate non-English narration, multilingual text in frames, or cross-lingual retrieval and narration.
- Personalization and intent-adaptive timing: How to adapt the silence/response policy to user preferences or task intent (e.g., terse vs. detailed narration) is not explored.
- Learning-to-decide vs. thresholding: The paper avoids EOS but does not compare SVeD with learned decision policies (e.g., RL-based response timing, binary โspeak/keep-silentโ heads, or bandit formulations).
- SCAMโs dependency on accurate semantic clips: Training presumes reliable clip boundaries; the paper uses automatic segmentation and paraphrase pools, but the impact of boundary errors and noisy paraphrases on downstream gating is not quantified.
- Generalization of SCAM: Whether masking intra-clip captions harms other tasks (e.g., long-form QA or dense event captioning) or creates unintended biases is not evaluated.
- Long-horizon degeneration cases: TSHMโs theoretical analysis assumes balanced growth and bounded branching; mitigation strategies for skewed trees (chains), threshold settings (ฯ too high/low), and rebalancing/garbage collection policies are not provided.
- Parameter sensitivity of TSHM: Effects of ฯ (node-attachment threshold), ฮฒ (momentum), k (beam width), and Lmax on recall, latency, and memory growth lack systematic ablation across long durations.
- Memory footprint accounting: The size and cost of storing both visual tokens/KVs and captions in the long-term memory over hours/days, and policies for compaction/deduplication, are not quantified.
- Retrieval correctness and error propagation: How often retrieved chains are semantically wrong or outdated and how such errors affect generation (e.g., hallucination via incorrect long-term context) are not measured.
- Handling concept drift and entity evolution: Strategies for updating or retiring stale memory nodes when entities change appearance, context, or roles over very long streams are not specified.
- Peak-End compression validity: Using PPL to pick โpeaksโ presumes linguistic salience aligns with visual/event salience; comparisons to task-driven or detector-based salience metrics are missing.
- Conflicts between short-term and retrieved context: Rules to arbitrate limited context budget between recent frames and retrieved memory (quota management, deduplication, or priority schemes) are not detailed.
- Multi-turn dialogue evaluation: Although an inter-dialogue cache is mentioned, systematic evaluation of multi-turn interactive streams (e.g., follow-up questions referencing far past) is limited or absent.
- Safety, privacy, and security: Risks of long-term storage (privacy of streamed content), misuse of retrieved context, and defenses against prompt/video injection or adversarial visuals are not discussed.
- Domain transfer and robustness: Generalization to unseen domains (e.g., industrial, medical, low-resource cultures), multi-camera setups, or egocentric vs exocentric perspectives is not empirically established.
- Biases in data curation: Filtering for HD, low speech density, removal of violent content, and reliance on YouTube may bias distribution; the impact on deployment in noisier, lower-quality, or safety-critical settings is unknown.
- Evaluation coverage: Benchmarks emphasize RNG and selected tasks; broader online tasks (forecasting, anomaly detection, streaming grounding with dense events) and real operator-in-the-loop studies are not included.
- Statistical significance and error bars: Reported improvements (e.g., +28.9% semantic correctness) lack confidence intervals or statistical tests across scenarios/tasks.
- Ablations on SCAM vs alternatives: Direct comparisons to other streaming-alignment curricula (e.g., progressive unmasking, teacher-forced incremental decoding, contrastive temporal objectives) are not shown.
- Failure case analysis: The paper lacks qualitative analyses identifying when SVeD fires too early/late, when TSHM retrieves irrelevant chains, or when SCAM fails on gradual scene transitions.
- Continual learning and forgetting: Mechanisms to adapt model parameters online (beyond external memory) and manage catastrophic forgetting or overfitting to recent contexts are not explored.
- Integration with non-visual sensors: Extending to audio, inertial, or event streams (e.g., robotics) and their impact on gating and memory organization is left open.
- Resource-awareness on edge devices: Feasibility on constrained hardware (mobile/AR glasses), energy consumption, and adaptive computation policies are not evaluated.
- Very-long-duration operation: Behavior over day-long or week-long streams (memory growth, retrieval latency, periodic reindexing) and system maintenance policies remain unspecified.
- Legal/ethical dataset aspects: Consent, licensing, and downstream usage limitations of YouTube-derived streams and long-term memory storage are not discussed.
Practical Applications
Immediate Applications
Below are deployable use cases that can be implemented with LiveStarProโs current capabilities (SVeD for proactive response timing, SCAM-trained incremental alignment, TSHM for long-horizon memory, and the streaming KV cache for efficiency).
- Media and live-streaming platforms (entertainment)
- Use case: Real-time narration of live streams with automatic chaptering and highlight detection; suppression of redundant commentary; hour-scale recall for callbacks.
- Potential products/workflows: OBS/YouTube/Twitch plug-ins that generate live captions and โkey momentsโ markers; post-stream auto-chaptering and highlight reels.
- Enabled by: SVeD gating (respond only when content changes), TSHM event chains (long-range callbacks), streaming KV cache (1.58ร speedup).
- Assumptions/dependencies: GPU-backed low-latency serving; rights/compliance; audio description pipeline (TTS) for accessibility; domain prompts or fine-tuning for specific genres.
- Sports broadcasting and analytics
- Use case: Live play-by-play captioning, highlight clipping, event tagging (e.g., goals, fouls), timeline-based summaries for analysts.
- Potential products/workflows: Broadcast-side AI commentator assistant; auto-generated highlight packages; coaching dashboards with searchable event trees.
- Enabled by: SVeD (timely output), SCAM (fine-grained temporal alignment), TSHM (retrieve past plays for context).
- Assumptions/dependencies: Domain-tuned prompts/data; licensing restrictions; stadium connectivity; latency budgets for on-air use.
- Retail operations and loss prevention
- Use case: Store-wide video monitoring for queue buildup, shelf stock anomalies, and shoplifting patterns with reduced false alerts through context-aware memories.
- Potential products/workflows: VMS (video management system) plugin that emits alerts only at semantically meaningful moments and produces shift handover digests.
- Enabled by: SVeD (alert only when warranted), TSHM (retrieve earlier related events for operator review).
- Assumptions/dependencies: Privacy compliance; camera coverage quality; site-specific adaptation; edge/cloud deployment strategy.
- Security and public safety (surveillance)
- Use case: Proactive, context-aware alerts from long-duration CCTV/bodycam streams; later retrieval of event chains for incident review.
- Potential products/workflows: Dispatcher triage tools; searchable incident timelines; automatic โwhat led up to this?โ recall.
- Enabled by: TSHM recursive event tree (sublinear retrieval of historical chains), SVeD (minimized chatter).
- Assumptions/dependencies: Legal/regulatory controls; human-in-the-loop verification; bias and fairness auditing; secure storage policies.
- Manufacturing and industrial control rooms
- Use case: Process monitoring with exception detection and long-horizon traceability (e.g., โwhen did this valve last switch?โ), reducing operator fatigue.
- Potential products/workflows: Control room assistant that emits concise alerts and produces shift summaries with clickable event chains.
- Enabled by: SVeD (alert cadence), TSHM (long-range recall across hours), streaming KV cache (cost efficiency).
- Assumptions/dependencies: Domain adaptation; integration with SCADA/IIoT logs; strict reliability and latency constraints.
- Healthcare and eldercare (non-diagnostic monitoring)
- Use case: Continuous patient/elderly monitoring for falls and risky behaviors with context-aware alerts and daily summaries.
- Potential products/workflows: Care facility dashboards; caregiver mobile app with event timelines and quick recall.
- Enabled by: SVeD (reduced alert fatigue), TSHM (retrieval of earlier incidents).
- Assumptions/dependencies: Medical privacy (HIPAA/GDPR), high-reliability requirements, edge/on-prem deployment; clinical validation for specific use.
- Education and training
- Use case: Live lecture/lab demo narration with time-aligned chapters; hands-on training session summaries with persistent context.
- Potential products/workflows: Classroom capture plugins that produce searchable chapters and recap notes; LMS integration.
- Enabled by: SVeD (timed outputs), SCAM (incremental alignment), TSHM (long-range context linking across segments).
- Assumptions/dependencies: Content rights; integration with capture systems; model prompts for domain-specific jargon.
- Video editing and post-production
- Use case: Automatic scene segmentation, semantic indexing, and retrieval of callbacks for long-form edits.
- Potential products/workflows: NLE (e.g., Premiere/DaVinci) assistant with a semantic event tree to jump to related scenes and generate summaries.
- Enabled by: TSHM (event-tree indexing), SCAM-trained temporal consistency.
- Assumptions/dependencies: Compute for hour-scale projects; human editor oversight for final cuts.
- Robotics and drones (field operations)
- Use case: Operator assistant that narrates state changes and remembers prior locations/objects across extended missions; task progress summaries.
- Potential products/workflows: ROS-compatible module for proactive alerts and memory-augmented situational awareness; drone mission debriefs.
- Enabled by: SVeD (event-triggered messaging), TSHM (long-horizon memory), streaming KV cache (resource efficiency).
- Assumptions/dependencies: Edge compute constraints; robust connectivity; sensor-specific tuning.
- Field service and AR wearables
- Use case: Technician bodycam streams with proactive guidance and recall of previous steps; automatic job-visit summaries.
- Potential products/workflows: AR glasses assistant; ticketing system integration with video-backed event logs.
- Enabled by: SVeD (timely intervention), TSHM (procedural memory retrieval).
- Assumptions/dependencies: On-device or near-edge GPU; privacy/consent; stable mounting and FOV.
- Accessibility (daily life)
- Use case: Live scene descriptions for visually impaired users with reduced verbosity and persistent context (e.g., โthe same person from earlier has returnedโ).
- Potential products/workflows: Smartphone and smart-glasses apps with TTS output and history-aware guidance.
- Enabled by: SVeD (avoid constant narration), TSHM (entity/event recall).
- Assumptions/dependencies: Low-latency TTS; on-device privacy; robust performance outdoors.
- Academia and benchmarking
- Use case: Research on streaming multimodal inference, memory architectures, and long-horizon evaluation using OmniStarPro.
- Potential products/workflows: Open-source baselines; reproducible benchmarks; ablation studies on memory compression/retrieval.
- Enabled by: OmniStarPro (15 scenarios; hour-scale tasks), SCAM/SVeD/TSHM reference implementations.
- Assumptions/dependencies: Dataset licensing adherence; compute for long-form experiments.
- Software and MLOps tooling
- Use case: API/SDK for streaming video understanding with verification gating and memory retrieval; observability for latency and timing errors.
- Potential products/workflows: Drop-in microservice for streaming inference; dashboards tracking semantic correctness and timing difference.
- Enabled by: SVeD (gate), streaming KV cache (efficiency), TSHM (memory APIs).
- Assumptions/dependencies: Containerization; GPU autoscaling; secure video ingestion.
Long-Term Applications
These use cases are promising but require additional research, scaling, domain validation, or infrastructure before reliable deployment.
- Multi-camera and multi-sensor fusion (smart cities, facilities, logistics)
- Vision: Track entities/events across cameras with a shared hierarchical memory; cross-view retrieval of event chains.
- Required advances: Cross-camera association, spatiotemporal calibration, scalable multi-source TSHM; robust identity linking.
- Multimodal audio-visual understanding at scale
- Vision: Jointly model speech/music/environmental audio with video for richer live commentary and compliance checks.
- Required advances: Training with audio tokens and alignment; ASR robustness in noisy conditions; new SCAM-like masks for audio-visual interleaving.
- Safety-critical autonomy (autonomous driving, surgical systems)
- Vision: Proactive alerts and long-horizon context in high-stakes settings with formal guarantees on timing and correctness.
- Required advances: Verified timing bounds for SVeD; certified memory behavior; extensive domain validation and regulatory approval.
- On-device/edge deployment at low power
- Vision: Run LiveStarPro-style agents on edge cameras, wearables, and drones with tight energy and memory budgets.
- Required advances: Model compression/quantization; hardware-friendly KV caching; memory-efficient TSHM variants.
- Lifelong personal memory agents (daily life)
- Vision: Continuously capture and retrieve personal event chains across days/weeks with strong privacy and user control.
- Required advances: Federated/secure TSHM; selective forgetting and retention policies; UI/UX for personal memory search.
- Enterprise knowledge and compliance video mining (finance, insurance, legal)
- Vision: Long-horizon monitoring for procedure adherence, compliance violations, and explainable audit trails using event chains.
- Required advances: Domain schemas and ontologies; policy-aware generation; legal-grade provenance and reproducibility.
- Energy and infrastructure monitoring
- Vision: Long-term operation monitoring via drones/CCTV at plants, pipelines, wind farms with proactive alerts and historical context.
- Required advances: Ruggedized deployment; environmental robustness; integration with telemetry; domain-tuned event taxonomies.
- Advanced editorial AI for long-form media and film
- Vision: Narrative-aware editing assistants that learn character arcs, callbacks, and plot structures over hours.
- Required advances: Higher-level story graphs on top of TSHM; creative intent modeling; rights and creator oversight workflows.
- Open-world generalization and continual learning
- Vision: Robust performance without extensive per-domain fine-tuning; adaptive memory over months without drift.
- Required advances: Continual learning mechanisms integrated with TSHM; safeguards against catastrophic forgetting and bias accumulation.
- Governance, privacy, and policy toolkits
- Vision: Standardized guardrails for always-on video AI (consent handling, redaction, retention), with explainable event-chain outputs for audits.
- Required advances: Policy-aware memory management; privacy-preserving embeddings; interoperable audit logs and standards.
Cross-cutting assumptions and dependencies
- Compute and latency: Real-time performance depends on GPU/accelerator availability, efficient KV caching, and network bandwidth; edge vs. cloud trade-offs matter.
- Data and domain adaptation: While OmniStarPro spans 15 scenarios, many deployments need additional domain-specific prompts or fine-tuning (e.g., healthcare, industrial processes, sports types).
- Audio handling: The paperโs dataset filters dense speech and the model focuses on visual understanding; robust deployment in audio-rich environments needs integrated ASR/audio models.
- Privacy and compliance: Continuous video processing raises consent, retention, and fairness concerns; privacy-preserving storage and retrieval must be designed into TSHM-based systems.
- Reliability and safety: For high-stakes use, extensive validation and possibly formal methods are needed to bound timing errors and failure modes of SVeD and memory retrieval.
- Camera/sensor quality: Performance assumes adequate resolution, frame rates, and stable viewpoints similar to the filtered dataset conditions.
Glossary
- Aesthetic assessment model: An automated evaluator of visual composition quality for filtering videos based on aesthetic criteria. "Finally, an aesthetic assessment model4 is employed to exclude videos that score below 5/10 on visual composition metrics."
- Autoregressive decoding: A token-by-token generation process where each next token is conditioned on previously generated tokens. "requires a complete autoregressive decoding for every frame"
- Branching factor: The average number of child nodes per parent in a tree structure, affecting retrieval complexity. "bounded branching factor b"
- Catastrophic forgetting: The loss of previously learned information when new data pushes old information out of limited memory. "Catastrophic Forgetting: Common eviction strategies such as First-In-First-Out (FIFO) discard historical content indiscriminately"
- Context buffer: A storage area for recent inputs used by the model during streaming inference. "the context buffer as a passive container"
- Context window: The maximum span of tokens the model can attend to at once during inference. "without saturating the active context window."
- Cosine similarity: A metric for measuring similarity between vectors by the cosine of the angle between them. "by cosine similarity"
- Differential token dropping: A strategy that selectively removes less important tokens to reduce computation while keeping salient information. "employ hierarchical memory or differential token dropping to filter re- dundant information on the fly."
- End-of-Sequence (EOS) token: A special token signaling the end of a generated sequence, sometimes misused to denote silence in streaming. "Treating the EOS token as an ordinary vocabulary entry lets its high frequency contaminate the semantic space,"
- Event chains: Structured sequences of related events used to represent and retrieve long-term temporal dependencies. "organizes evicted historical information into event chains"
- First-In-First-Out (FIFO): A queue-based eviction policy that removes the oldest items first. "Common eviction strategies such as First-In-First-Out (FIFO) discard historical content indiscriminately"
- Hierarchical beam descent: A tree traversal and retrieval strategy that expands top-k promising branches layer by layer to find relevant items efficiently. "performs a hierarchical beam descent: starting from the set of root nodes, it scores only the immediate children of the current frontier by cosine similarity,"
- Instruction-tuning paradigm: A training approach that adapts models using task-like instructions to elicit desired behaviors. "constitute an instruction-tuning paradigm tailored to the incremental behavior of SVeD;"
- Last-In-First-Out (LIFO) stack: A stack data structure where the most recently added element is processed first. "together with a LIFO (Last- In-First-Out) stack architecture."
- Lexical density constraint: A limit on the number of words per time interval to control speech/text density for processing. "under a strict lexical density constraint of at most two words per 10-second interval,"
- Long-Term Retrieval Memory: An external storage of condensed historical events designed for retrieval beyond the active context. "adds a Long-Term Retrieval Memory organized as a Recursive Event Tree,"
- Momentum-based aggregation: An update rule that blends new and old embeddings with a momentum term to form stable summaries. "using a momentum-based aggregation scheme:"
- Optical flow: A technique for estimating motion between frames by tracking pixel-level movement. "optical flow3 analysis removes videos"
- Peak-End compression: A memory compression technique that retains salient peaks and end summaries of events. "the Peak-End compression is reformulated as the Short-Term Working Memory"
- Peak-End rule: A cognitive principle that experiences are remembered largely by their most intense (peak) and ending moments. "Drawing on the Peak-End rule [86] from cognitive psychology,"
- Perplexity (PPL): A measure of model confidence or uncertainty, with lower values indicating better fit to the data. "the perplexity (PPL) of the generated caption [Dec] acts as a confidence measure:"
- Recursive Event Tree: A hierarchical structure where each node stores an event and links to semantically related child events for efficient retrieval. "This memory is organized as a recursive event tree, where each node corresponds to a memory unit"
- Semantic centroid: The representative embedding that summarizes a cluster (subtree) of related events. "toward the semantic centroid of their descendant events,"
- Semantic clip: A contiguous set of frames that share the same event description. "Here, Ck defines a semantic clip, namely a continuous sequence of frames that share the same semantic event description [Txtk]."
- Semantic divergence score: A measure of how much the current input differs semantically from the existing description. "defined as a semantic divergence score,"
- Semantic similarity function: A function S(., .) that quantifies semantic closeness between two sequences or embeddings. "S(., .) is a semantic similarity function"
- Short-Term Working Memory: The active, high-resolution memory region that stores recent frames and captions under a token budget. "The short-term working memory operates under a fixed token budget Lmax."
- Sliding window mechanisms: Techniques that maintain a moving window of recent context while discarding older data. "predominantly rely on simple sliding window mechanisms"
- Streaming Key-Value (KV) Cache: A caching scheme that stores intermediate attention keys and values for efficient streaming updates. "we accordingly devise an effective Streaming Key-Value (KV) Cache"
- Streaming Verification Decoding (SVeD): An inference method that verifies whether to speak or stay silent via a single-pass check before generating. "We propose Streaming Verification Decoding (SVeD), a novel inference framework that determines the optimal response timing through a single forward-pass verifica- tion."
- Sublinear retrieval: A retrieval process whose cost grows slower than linearly with the number of stored items. "with sublinear expected retrieval,"
- Temporal grounding: The task of aligning textual references or queries to specific moments or intervals in a video. "including live streaming narration, temporal grounding, and multi-turn interactive understanding."
- Token budget: The maximum number of tokens allowed in the active memory/context during inference. "The short-term working memory operates under a fixed token budget Lmax."
- Video LLMs (Video-LLMs): Multimodal models that process video and text to perform language-guided video understanding. "Despite the remarkable progress of Video LLMs (Video-LLMs),"
- Video-language alignment: The correspondence between visual content and linguistic descriptions learned by the model. "How to establish an effective response-silence framework during both training and inference while preserving video-language alignment?"
Collections
Sign up for free to add this paper to one or more collections.