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

coder rock 276 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.

ASP.NET
ASP.NET
A set of technologies in the .NET Framework for building web applications and XML web services.
3,391 questions
C#
C#
An object-oriented and type-safe programming language that has its roots in the C family of languages and includes support for component-oriented programming.
10,550 questions
{count} votes

Accepted answer
  1. Michael Taylor 50,506 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