How to achieve Named Entity Recognition (NER) using C# asp.net

coder rock 436 Reputation points
2024-06-18T09:45:00.54+00:00

When we read a text, we naturally recognize named entities like people, values, locations, and so on. For example, in the sentence “Mark Zuckerberg is one of the founders of Facebook, a company from the United States” we can identify three types of entities:

“Person”: Mark Zuckerberg

“Company”: Facebook

“Location”: United States

I don't want any third-party applications that require payment. I prefer free third-party applications or ones that use other programming logic.

Developer technologies | ASP.NET | Other
Developer technologies | C#
{count} votes

Accepted answer
  1. Michael Taylor 60,326 Reputation points
    2024-06-19T16:13:35.1566667+00:00

    There is no such thing as a free AI service. You'll need to either reinvent the wheel (good luck) or buy a product if you want that kind of functionality. Technically you can probably get away with natural language processing but even those aren't free, at least for good ones.

    Nevertheless asking in the Q&A forum for people to run a google search and provide you the information you can get yourself seems a little much. Just google for the very thing you're looking for and follow the results. It'll be faster for you.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.