如果将存储的文档传递给 MoreLikeThisHandler,mlt.mindf=1 是否会排除传入的文档?
在 Solr 中,我使用 MoreLikeThis 处理程序。我传入索引中已存在的文档的唯一 ID,以便查找相关文档。指定 mlt.mindf=1 是否包含前面提到的文档?如果我想确保它存在于除我传入的文档之外的至少一个文档中,是否应该设置 mlt.mindf=2 的值?
In Solr, I am using the MoreLikeThis handler. I am passing in the unique id of a document that already exists in the index in order to find related documents. Does specifying mlt.mindf=1 include the previously mentioned document? If I want to be sure it exists in at least one document other than the one I pass in, should I set the value of mlt.mindf=2 instead?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是你正在做的一个有趣的项目:D
并且你正确。如果您想确保至少有一个其他文档具有相同的术语,则应将该值设置为 2。
玩得开心 :)
That's a fun project your'e doing :D
And your'e correct. You should set the value to 2 if you want to make sure that there is at-least one other document with the same term.
Have fun :)
mindf
指定最小文档频率,即必须包含某个术语才能被计数的文档的最小数量。有关详细信息,请参阅 MoreLikeThis
mindf
specifies the minimum document frequency, that is, the minimum number of documents that must include a term for that term to be counted.For more info, see MoreLikeThis