Volver al ranking

facebookarchive/duckling_old

Clojureduckling.wit.ai

Deprecated in favor of https://github.com/facebook/duckling

nlunlpparser
Crecimiento de estrellas
Estrellas
1.3k
Forks
209
Crecimiento semanal
Issues
67
5001k
ene 2023mar 2024may 2025jul 2026
README

Deprecation notice

As of May 1st, 2017 we're deprecating this repository in favor of the new Duckling. See our blog post announcement.

Thanks to all the contributors!

Duckling

Clojars Project

Duckling is a Clojure library that parses text into structured data:

“the first Tuesday of October” => {:value "2014-10-07T00:00:00.000-07:00"
                                   :grain :day}

You can try it out at https://duckling.wit.ai

See our blog post announcement for more context.

Getting started

To use Duckling in your project, you just need two functions: load! to load the default configuration, and parse to parse a string.

(ns myproject.core
  (:require [duckling.core :as p]))

(p/load!) ;; Load all languages

(p/parse :en$core ;; core configuration for English ; see also :fr$core, :es$core, :zh$core
         "wake me up the last Monday of January 2015 at 6am"
         [:time]) ;; We are interested in :time expressions only ; see also :duration, :temperature, etc.

;; => [{:label :time
;;        :start 15
;;        :end 49
;;        :value {:type "value", :value "2015-01-26T06:00:00.000-02:00", :grain :hour}
;;        :body "last Monday of January 2015 at 6am"}]

See the documentation for more information.

Repositorios relacionados
RasaHQ/rasa

💬 Open source machine learning framework to automate text- and voice-based conversations: NLU, dialogue management, connect to Slack, Facebook, and more - Create chatbots and voice assistants

PythonPyPIApache License 2.0nlpmachine-learning
rasa.com/docs/rasa/
21.3k4.9k
axa-group/nlp.js

An NLP library for building bots, with entity extraction, sentiment analysis, automatic language identify, and so more

JavaScriptnpmMIT Licensenlpnlu
6.6k632
microsoft/nlp-recipes

Natural Language Processing Best Practices & Examples

PythonPyPIMIT Licensenlpnatural-language-processing
6.4k913
CLUEbenchmark/CLUE

中文语言理解测评基准 Chinese Language Understanding Evaluation Benchmark: datasets, baselines, pre-trained models, corpus and leaderboard

PythonPyPInlubenchmark
cluebenchmarks.com
4.3k544
snipsco/snips-nlu

Snips Python library to extract meaning from text

PythonPyPIApache License 2.0nlpnlu
snips-nlu.readthedocs.io
4k504
IntelLabs/nlp-architect

A model library for exploring state-of-the-art deep learning topologies and techniques for optimizing Natural Language Processing neural networks

PythonPyPIApache License 2.0deeplearningnlp
intellabs.github.io/nlp-architect
2.9k442
dmlc/gluon-nlp

NLP made easy

PythonPyPIApache License 2.0mxnetgluonnlp
nlp.gluon.ai
2.5k520
Delta-ML/delta

DELTA is a deep learning based natural language and speech processing platform. LF AI & DATA Projects: https://lfaidata.foundation/projects/delta/

PythonPyPIApache License 2.0nlpdeep-learning
delta-didi.readthedocs.io
1.6k283
charlesXu86/Chatbot_CN

基于金融-司法领域(兼有闲聊性质)的聊天机器人,其中的主要模块有信息抽取、NLU、NLG、知识图谱等,并且利用Django整合了前端展示,目前已经封装了nlp和kg的restful接口

Apache License 2.0deep-learningchatbot-cn
1.3k424
rodrigopivi/Chatito

🎯🗯 Dataset generation for AI chatbots, NLP tasks, named entity recognition or text classification models using a simple DSL!

TypeScriptnpmchatitonlu
rodrigopivi.github.io/Chatito/
877154