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
+25-60
Original file line number
Diff line number
Diff line change
@@ -41,24 +41,33 @@ Features:
41
41
* Core NLP models used in many NLP tasks and useful in many NLP applications
42
42
* Novel NLU models showcasing novel topologies and techniques
43
43
* Optimized NLP/NLU models showcasing different optimization algorithms on neural NLP/NLU models
44
-
* Simple REST API server ([doc](http://nlp_architect.nervanasys.com/service.html)):
45
-
* serving trained models (for inference)
46
-
* plug-in system for adding your own model
47
-
* 4 Demos of models (pre-trained by us) showcasing NLP Architect (Dependency parser, NER, Intent Extraction, Q&A)
44
+
* Model-oriented design:
45
+
* Train and run models from command-line.
46
+
* API for using models for inference in python.
47
+
* Procedures to define custom processes for training, inference or anything related to processing.
48
+
* CLI sub-system for running procedures
48
49
* Based on optimized Deep Learning frameworks:
49
50
50
51
*[TensorFlow]
51
52
*[PyTorch]
52
53
*[Intel-Optimized TensorFlow with MKL-DNN]
53
54
*[Dynet]
54
55
55
-
* Documentation [website](http://nlp_architect.nervanasys.com/) and [tutorials](http://nlp_architect.nervanasys.com/tutorials.html)
56
56
* Essential utilities for working with NLP models - Text/String pre-processing, IO, data-manipulation, metrics, embeddings.
57
+
* Plug-able REST API server to serve models via REST API
57
58
58
59
## Installing NLP Architect
59
60
60
61
We recommend to install NLP Architect in a new python environment, to use python 3.6+ with up-to-date `pip`, `setuptools` and `h5py`.
61
62
63
+
### Install using `pip`
64
+
65
+
Includes only core library (without `examples/` directory)
66
+
67
+
```sh
68
+
pip install nlp-architect
69
+
```
70
+
62
71
### Install from source (Github)
63
72
64
73
Includes core library and all content (example scripts, datasets, tutorials)
@@ -76,14 +85,6 @@ Install (in develop mode)
76
85
pip install -e .
77
86
```
78
87
79
-
### Install from pypi (using `pip install`)
80
-
81
-
Includes only core library
82
-
83
-
```sh
84
-
pip install nlp-architect
85
-
```
86
-
87
88
### Further installation options
88
89
89
90
Refer to our full [installation instructions](http://nlp_architect.nervanasys.com/installation.html) page on our website for complete details on how to install NLP Architect and other backend installations such as MKL-DNN or GPU backends.
@@ -93,40 +94,30 @@ Users can install any deep learning backends manually before/after they install
93
94
94
95
NLP models that provide best (or near) in class performance:
Solutions (End-to-end applications) using one or more models:
131
122
132
123
*[Term Set expansion](http://nlp_architect.nervanasys.com/term_set_expansion.html) - uses the included word chunker as a noun phrase extractor and NP2Vec to create semantic term sets
@@ -155,34 +146,8 @@ The main design guidelines are:
155
146
* REST API servers with ability to serve trained models via HTTP
0 commit comments