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
@@ -47,24 +47,33 @@ Features:
47
47
* Core NLP models used in many NLP tasks and useful in many NLP applications
48
48
* Novel NLU models showcasing novel topologies and techniques
49
49
* Optimized NLP/NLU models showcasing different optimization algorithms on neural NLP/NLU models
50
-
* Simple REST API server ([doc](http://nlp_architect.nervanasys.com/service.html)):
51
-
* serving trained models (for inference)
52
-
* plug-in system for adding your own model
53
-
* 4 Demos of models (pre-trained by us) showcasing NLP Architect (Dependency parser, NER, Intent Extraction, Q&A)
50
+
* Model-oriented design:
51
+
* Train and run models from command-line.
52
+
* API for using models for inference in python.
53
+
* Procedures to define custom processes for training, inference or anything related to processing.
54
+
* CLI sub-system for running procedures
54
55
* Based on optimized Deep Learning frameworks:
55
56
56
57
*[TensorFlow]
57
58
*[PyTorch]
58
59
*[Intel-Optimized TensorFlow with MKL-DNN]
59
60
*[Dynet]
60
61
61
-
* Documentation [website](http://nlp_architect.nervanasys.com/) and [tutorials](http://nlp_architect.nervanasys.com/tutorials.html)
62
62
* Essential utilities for working with NLP models - Text/String pre-processing, IO, data-manipulation, metrics, embeddings.
63
+
* Plug-able REST API server to serve models via REST API
63
64
64
65
## Installing NLP Architect
65
66
66
67
We recommend to install NLP Architect in a new python environment, to use python 3.6+ with up-to-date `pip`, `setuptools` and `h5py`.
67
68
69
+
### Install using `pip`
70
+
71
+
Includes only core library (without `examples/` directory)
72
+
73
+
```sh
74
+
pip install nlp-architect
75
+
```
76
+
68
77
### Install from source (Github)
69
78
70
79
Includes core library and all content (example scripts, datasets, tutorials)
@@ -82,14 +91,6 @@ Install (in develop mode)
82
91
pip install -e .
83
92
```
84
93
85
-
### Install from pypi (using `pip install`)
86
-
87
-
Includes only core library
88
-
89
-
```sh
90
-
pip install nlp-architect
91
-
```
92
-
93
94
### Further installation options
94
95
95
96
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.
@@ -99,40 +100,30 @@ Users can install any deep learning backends manually before/after they install
99
100
100
101
NLP models that provide best (or near) in class performance:
Solutions (End-to-end applications) using one or more models:
137
128
138
129
*[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
@@ -161,34 +152,8 @@ The main design guidelines are:
161
152
* REST API servers with ability to serve trained models via HTTP
0 commit comments