Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试使用 Lucene 实现搜索引擎。我有字幕作为语料库。我解析了它们并将它们转换为以下格式:
timestamp0 sentence0 timestamp1 sentence1 timestamp2 sentence2 . . .
我只使用文档中的句子实现了一个基本的索引和搜索应用程序。但是我想要实现的是让 Lucene 也返回句子的时间戳。换句话说,我希望我的搜索引擎能够说出电影中何时出现某个短语。我可以使用 Lucene 来实现吗?提前致谢。