Help: Which ML/DL model approach is most suitable for my problem? #40
-
Hello dear community, I am a student and a total beginner in the topics ML and neural networks. It should have a context sensitive algorithm to distinguish between person names and objects. For example Input:
At the end, I should only replace the identified person names with asterisk characters and thus anonymize them like this output:
My problem is that I can't use a predefined model like Spacy because it was already used earlier. So I have to build a model from scratch. Does anyone have good tips on how I can best approach my project? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey there! NER is where I would head first. You'd want to use a NER model to detect different person's names and then once they're found, replace the strings (the characters which make up their names) with asterisks. |
Beta Was this translation helpful? Give feedback.
Hey there!
NER is where I would head first.
You'd want to use a NER model to detect different person's names and then once they're found, replace the strings (the characters which make up their names) with asterisks.