You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 8, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+16-1Lines changed: 16 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,22 @@ NLP Architect is an open-source Python library for exploring the state-of-the-ar
8
8
language understanding. It is intended to be a platform for future research and
9
9
collaboration.
10
10
11
-
The library consists of core modules (topologies), data pipelines, utilities and end-to-end model examples with training and inference scripts. Each of the models includes algorithm descriptions and results in the [documentation](http://www.nlp_architect.nervanasys.com/).
11
+
The current version of NLP Architect includes these features that we found interesting from both research perspectives and practical applications:
12
+
13
+
* NLP core models that allow robust extraction of linguistic features for NLP workflow: for example, dependency parser (BIST) and NP chunker
14
+
* NLU modules that provide best in class performance: for example, intent extraction (IE), name entity recognition (NER)
15
+
* Modules that address semantic understanding: for example, colocations, most common word sense, NP embedding representation (e.g. NP2V)
16
+
* Components instrumental for conversational AI: for example, ChatBot applications, including dialog system, sequence chunking and IE
17
+
* End-to-end DL applications using new topologies: for example, Q&A, machine reading comprehension
The library consists of core modules (topologies), data pipelines, utilities and end-to-end model examples with training and inference scripts. We look at these as a set of building blocks that were needed for implementing NLP use cases based on our pragmatic research experience. Each of the models includes algorithm descriptions and results in the [documentation](http://www.nlp_architect.nervanasys.com/).
22
+
23
+
Some of the components, with provided pre-trained models, are exposed as REST service APIs through NLP Architect server. NLP Architect server is designed to provide predictions across different models in NLP Architect. It also includes a web front-end exposing the model annotations for visualizations. Currently, we provide 2 services, BIST dependency parsing and NER annotations. We also provide a template for developers to add a new service.
0 commit comments