All Projects → SciSharp → Cherubnlp

SciSharp / Cherubnlp

Licence: apache-2.0
Natural Language Processing in .NET Core

Projects that are alternatives of or similar to Cherubnlp

Snips Nlu Rs
Snips NLU rust implementation
Stars: ✭ 315 (+343.66%)
Mutual labels:  nlu
Articulate
A platform for building conversational interfaces with intelligent agents (chatbots)
Stars: ✭ 534 (+652.11%)
Mutual labels:  nlu
Rasa Ui
Rasa UI is a frontend for the Rasa Framework
Stars: ✭ 796 (+1021.13%)
Mutual labels:  nlu
Snips Nlu
Snips Python library to extract meaning from text
Stars: ✭ 3,583 (+4946.48%)
Mutual labels:  nlu
Chat
基于自然语言理解与机器学习的聊天机器人,支持多用户并发及自定义多轮对话
Stars: ✭ 516 (+626.76%)
Mutual labels:  nlu
Nlp Recipes
Natural Language Processing Best Practices & Examples
Stars: ✭ 5,783 (+8045.07%)
Mutual labels:  nlu
Nlu sim
all kinds of baseline models for sentence similarity 句子对语义相似度模型
Stars: ✭ 286 (+302.82%)
Mutual labels:  nlu
Easynlu
Simple embedded NLU for mobile apps
Stars: ✭ 57 (-19.72%)
Mutual labels:  nlu
Resin
Hardware-accelerated vector-based search engine. Available as a HTTP service or as an embedded library.
Stars: ✭ 529 (+645.07%)
Mutual labels:  nlu
Chatbot cn
基于金融-司法领域(兼有闲聊性质)的聊天机器人,其中的主要模块有信息抽取、NLU、NLG、知识图谱等,并且利用Django整合了前端展示,目前已经封装了nlp和kg的restful接口
Stars: ✭ 791 (+1014.08%)
Mutual labels:  nlu
Botlibre
An open platform for artificial intelligence, chat bots, virtual agents, social media automation, and live chat automation.
Stars: ✭ 412 (+480.28%)
Mutual labels:  nlu
Nlp.js
An NLP library for building bots, with entity extraction, sentiment analysis, automatic language identify, and so more
Stars: ✭ 4,670 (+6477.46%)
Mutual labels:  nlu
Chatito
🎯🗯 Generate datasets for AI chatbots, NLP tasks, named entity recognition or text classification models using a simple DSL!
Stars: ✭ 678 (+854.93%)
Mutual labels:  nlu
Clause
🏇 聊天机器人,自然语言理解,语义理解
Stars: ✭ 323 (+354.93%)
Mutual labels:  nlu
Crosslingual Nlu
Zero-shot Cross-lingual Task-Oriented Dialogue Systems (EMNLP 2019)
Stars: ✭ 20 (-71.83%)
Mutual labels:  nlu
Deep Learning Nlp Rl Papers
Recent Deep Learning papers in NLU and RL
Stars: ✭ 288 (+305.63%)
Mutual labels:  nlu
Opsdroid
🤖 An open source chat-ops bot framework
Stars: ✭ 563 (+692.96%)
Mutual labels:  nlu
Botsharp
The Open Source AI Chatbot Platform Builder in 100% C# Running in .NET Core with Machine Learning algorithm.
Stars: ✭ 1,103 (+1453.52%)
Mutual labels:  nlu
Pytlas
An open-source 🤖💬 Python 3 assistant library built for people and made to be super easy to setup and understand
Stars: ✭ 34 (-52.11%)
Mutual labels:  nlu
Tc Bot
User Simulation for Task-Completion Dialogues
Stars: ✭ 733 (+932.39%)
Mutual labels:  nlu

CherubNLP

Natural Language Processing in .NET Standard.

PM > Install-Package CherubNLP

Word Vector

Text Vector

Text Similarity

using NumSharp;

var similarities = Similarity.Cosine("We can use Cosine to compute the similarity of two hardcoded lists.", new[]
            {
                "Cosine Similarity algorithm function sample.",
                "The Cosine Similarity function computes the similarity of two lists of numbers.",
                "Compute the similarity of two hardcoded lists.",
                "We can compute the similarity of two hardcoded lists.",
                "Coronavirus app could trace your contacts without sacrificing your privacy"
            }, "dbpedia.ftz"));

Assert.AreEqual(new[] { 0, 4, 1, 3, 2 }, np.argsort<double>(similarities));
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].