duanbiyi7319 2011-08-26 15:04 采纳率: 100%
浏览 20

将多项搜索字符串解析为查询规范?

I'm working on a web service that allows users to search for appointments with businesses contained in our index. We intend to make an intelligent search engine which would handle multiple types of terms. The basic goal is to parse a string such as "dentist next week night bay area" or subsets of it, into 4 categories: service type, date range, time range , and location. We can then use those categories to build a query for our database.

I'm a strong believer in buying vs building, but I've been having trouble finding any products that offer this capability. Is this a feature most companies develop in-house? Thanks for any advice.

  • 写回答

1条回答 默认 最新

  • doubei8541 2011-08-26 15:23
    关注

    You are talking semantic analysis, it is a broad subject

    There is a python toolkit nltk which can do categorization of text.

    The classifier might be more appropriate

    评论

报告相同问题?