Skip to content

A Natural Language Processing (NLP) Engine built with ML.NET

Notifications You must be signed in to change notification settings

mlnethub/Starlight

 
 

Repository files navigation

Starlight is an experimental Natural Language Processing (NLP) Engine built with the ML.NET framework. It processes requests based on a Machine Learning Dataset, which comes with the project and is editable by the user.

Example:

Query: Remind me to work on my project tomorrow

Output:

{
  "query": "Remind me to work on my project tomorrow",
  "intents": [
    {
      "intent": "addReminder",
      "score": 0.9951776
    },
    {
      "intent": "showWeather",
      "score": 0.477052838
    },
    {
      "intent": "showNews",
      "score": 0.008260157
    }
  ]
}

About

A Natural Language Processing (NLP) Engine built with ML.NET

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C# 100.0%