Fuzzy matching of product names

前端 未结 11 1324
长发绾君心
长发绾君心 2020-12-12 16:28

I need to automatically match product names (cameras, laptops, tv-s etc) that come from different sources to a canonical name in the database.

For example \"

11条回答
  •  眼角桃花
    2020-12-12 17:09

    That is exactly the problem I'm working on in my spare time. What I came up with is: based on keywords narrow down the scope of search:

    in this case you could have some hierarchy:

    type --> company --> model

    so that you'd match "Digital Camera" for a type

    "Canon" for company and there you'd be left with much narrower scope to search.

    You could work this down even further by introducing product lines etc. But the main point is, this probably has to be done iteratively.

提交回复
热议问题