🤖 AI Summary
This work addresses the challenge of users struggling to pinpoint specific moments in meeting discussions based solely on content. To overcome this, the paper proposes a novel approach that reframes timestamp prediction as a constrained candidate selection task. Instead of directly generating timestamps, large language models such as Mistral-7B-Instruct are guided to select the most relevant segment from a set of retrieved, timestamped meeting excerpts, thereby avoiding unsupported or invalid predictions. Integrating retrieval-augmented generation (RAG) with a constrained selection mechanism, the method demonstrates significant improvements on a dataset of 200 municipal meetings and 420 queries: Recall@5 increases from 31.9% to 50.0%, mean absolute error decreases to 761 seconds, and the number of valid outputs rises from 373 to 419, substantially enhancing both accuracy and reliability in temporal localization.
📝 Abstract
Meeting archives are difficult to search when users remember what was discussed but not when. We study topic-to-timestamp alignment: given a natural-language topic and a timestamped meeting transcript, the goal is to return the time at which the topic is discussed. A standard RAG setup can retrieve relevant transcript excerpts, but still asks the language model to generate a timestamp, which can produce unsupported or invalid timecodes. We therefore recast timestamp prediction as constrained temporal candidate selection: the system retrieves timestamped transcript chunks, and the model selects the candidate that best grounds the topic instead of generating a timecode. On 420 topic-timestamp queries from 200 municipal meeting transcripts, this increases Recall@5 from 31.9% to 50.0%, reduces MAE from 837.0 seconds to 761.0 seconds with Mistral-7B-Instruct, and increases the number of parseable outputs from 373 to 419 of 420 queries. The results suggest that temporal grounding in long transcripts depends strongly on retrieval quality and output design, not only on the choice of the language model.