Textcat or NER ? #12606
Unanswered
yellowy
asked this question in
Help: Other Questions
Textcat or NER ?
#12606
Replies: 1 comment 2 replies
-
Hello @yellowy, thanks for using spaCy! I'd explore using rule-based pattern matching in your case. You can create patterns quickly with spaCy's |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As my first software project ever I'm trying to build a harmonizing tool for our DB and I thought spaCy might help me a great deal with that. I get databases from customers regularly and those csv files sometimes arrive without a GTIN (with which i would harmonize the data so we can continue to work with the data)
So I thought i would let a spacy model learn the names of the products and I was wondering how to do this in a smart way.
I thought I should either train a SpaCy model on a combined GTIN and product name and then let this run on foreign databases and whenever he identifies a name he can find the corresponding GTIN for it? or would a different approach be better?
And is NER or Textcat better suited for this kind of task?
The Data I receive is like this:
"id; product-name; packaging" and so on
I'm sorry if this is too low level of a question but I'm very thankful for any nudge in the right direction.
Beta Was this translation helpful? Give feedback.
All reactions