Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit eaf11b1

Browse files
author
Peter Izsak
committed
Update documentation to 0.5
1 parent 4523692 commit eaf11b1

File tree

97 files changed

+2882
-618
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+2882
-618
lines changed

README.md

+25-60
Original file line numberDiff line numberDiff line change
@@ -47,24 +47,33 @@ Features:
4747
* Core NLP models used in many NLP tasks and useful in many NLP applications
4848
* Novel NLU models showcasing novel topologies and techniques
4949
* 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
5455
* Based on optimized Deep Learning frameworks:
5556

5657
* [TensorFlow]
5758
* [PyTorch]
5859
* [Intel-Optimized TensorFlow with MKL-DNN]
5960
* [Dynet]
6061

61-
* Documentation [website](http://nlp_architect.nervanasys.com/) and [tutorials](http://nlp_architect.nervanasys.com/tutorials.html)
6262
* 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
6364

6465
## Installing NLP Architect
6566

6667
We recommend to install NLP Architect in a new python environment, to use python 3.6+ with up-to-date `pip`, `setuptools` and `h5py`.
6768

69+
### Install using `pip`
70+
71+
Includes only core library (without `examples/` directory)
72+
73+
```sh
74+
pip install nlp-architect
75+
```
76+
6877
### Install from source (Github)
6978

7079
Includes core library and all content (example scripts, datasets, tutorials)
@@ -82,14 +91,6 @@ Install (in develop mode)
8291
pip install -e .
8392
```
8493

85-
### Install from pypi (using `pip install`)
86-
87-
Includes only core library
88-
89-
```sh
90-
pip install nlp-architect
91-
```
92-
9394
### Further installation options
9495

9596
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
99100

100101
NLP models that provide best (or near) in class performance:
101102

102-
* [Word chunking](http://nlp_architect.nervanasys.com/chunker.html)
103-
* [Named Entity Recognition](http://nlp_architect.nervanasys.com/ner_crf.html)
103+
* [Word chunking](http://nlp_architect.nervanasys.com/tagging/sequence_tagging.html#word-chunker)
104+
* [Named Entity Recognition](http://nlp_architect.nervanasys.com/tagging/sequence_tagging.html#named-entity-recognition)
104105
* [Dependency parsing](http://nlp_architect.nervanasys.com/bist_parser.html)
105106
* [Intent Extraction](http://nlp_architect.nervanasys.com/intent.html)
106-
* [Sentiment classification](http://nlp_architect.nervanasys.com/supervised_sentiment.html)
107-
* [Language models](http://nlp_architect.nervanasys.com/tcn.html)
108-
* [Transformers](http://nlp_architect.nervanasys.com/) (for most NLP tasks)
107+
* [Sentiment classification](http://nlp_architect.nervanasys.com/sentiment.html#supervised-sentiment)
108+
* [Language models](http://nlp_architect.nervanasys.com/lm.html#language-modeling-with-tcn)
109+
* [Transformers](http://nlp_architect.nervanasys.com/transformers.html) (for NLP tasks)
109110

110111
Natural Language Understanding (NLU) models that address semantic understanding:
111112

112113
* [Aspect Based Sentiment Analysis (ABSA)](http://nlp_architect.nervanasys.com/absa.html)
114+
* [Joint intent detection and slot tagging](http://nlp_architect.nervanasys.com/intent.html)
113115
* [Noun phrase embedding representation (NP2Vec)](http://nlp_architect.nervanasys.com/np2vec.html)
114116
* [Most common word sense detection](http://nlp_architect.nervanasys.com/word_sense.html)
115117
* [Relation identification](http://nlp_architect.nervanasys.com/identifying_semantic_relation.html)
116118
* [Cross document coreference](http://nlp_architect.nervanasys.com/cross_doc_coref.html)
117119
* [Noun phrase semantic segmentation](http://nlp_architect.nervanasys.com/np_segmentation.html)
118120

119-
Components instrumental for conversational AI:
120-
121-
* [Joint intent detection and slot tagging](http://nlp_architect.nervanasys.com/intent.html)
122-
* [Memory Networks for goal oriented dialog](http://nlp_architect.nervanasys.com/memn2n.html)
123-
124121
Optimizing NLP/NLU models and misc. optimization techniques:
125122

126-
* [Quantized BERT (8bit)](http://nlp_architect.nervanasys.com/)
127-
* [Knowledge Distillation using BERT](http://nlp_architect.nervanasys.com/)
123+
* [Quantized BERT (8bit)](http://nlp_architect.nervanasys.com/quantized_bert.html)
124+
* [Knowledge Distillation using Transformers](http://nlp_architect.nervanasys.com/transformers_distillation.html)
128125
* [Sparse and Quantized Neural Machine Translation (GNMT)](http://nlp_architect.nervanasys.com/sparse_gnmt.html)
129126

130-
End-to-end Deep Learning-based NLP models:
131-
132-
* [Reading comprehension](http://nlp_architect.nervanasys.com/reading_comprehension.html)
133-
* [Language Modeling using Temporal Convolution Network (TCN)](http://nlp_architect.nervanasys.com/tcn.html)
134-
* [Unsupervised Cross-lingual embeddings](http://nlp_architect.nervanasys.com/crosslingual_emb.html)
135-
136127
Solutions (End-to-end applications) using one or more models:
137128

138129
* [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:
161152
* REST API servers with ability to serve trained models via HTTP
162153
* Extensive model documentation and tutorials
163154

164-
## Demo UI examples
165-
166-
Dependency parser
167-
<p>
168-
<img src="https://raw.githubusercontent.com/NervanaSystems/nlp-architect/master/assets/bist-demo-small.png" height="375"/>
169-
</p>
170-
Intent Extraction
171-
<p>
172-
<img src="https://raw.githubusercontent.com/NervanaSystems/nlp-architect/master/assets/ie-demo-small.png" height="375"/>
173-
<p>
174-
175-
## Packages
176-
177-
| Package | Description |
178-
|------------------------- |------------------------------------------------------ |
179-
| `nlp_architect.api` | Model API interfaces |
180-
| `nlp_architect.common` | Common packages |
181-
| `nlp_architect.cli` | Command line module |
182-
| `nlp_architect.data` | Datasets, loaders and data processors |
183-
| `nlp_architect.models` | NLP, NLU and End-to-End models |
184-
| `nlp_architect.nn` | Topology related models and additions (per framework) |
185-
| `nlp_architect.pipelines` | End-to-end NLP apps |
186-
| `nlp_architect.procedures`| Procedure scripts |
187-
| `nlp_architect.server` | API Server and demos UI |
188-
| `nlp_architect.solutions` | Solution applications |
189-
| `nlp_architect.utils` | Misc. I/O, metric, pre-processing and text utilities |
190-
191155
### Note
156+
192157
NLP Architect is an active space of research and development; Throughout future
193158
releases new models, solutions, topologies and framework additions and changes
194159
will be made. We aim to make sure all models run with Python 3.6+. We
@@ -197,17 +162,17 @@ encourage researchers and developers to contribute their work into the library.
197162
## Citing
198163

199164
If you use NLP Architect in your research, please use the following citation:
200-
```
165+
201166
@misc{izsak_peter_2018_1477518,
202167
title = {NLP Architect by Intel AI Lab},
203168
month = nov,
204169
year = 2018,
205170
doi = {10.5281/zenodo.1477518},
206171
url = {https://doi.org/10.5281/zenodo.1477518}
207172
}
208-
```
209173

210174
## Disclaimer
175+
211176
The NLP Architect is released as reference code for research purposes. It is
212177
not an official Intel product, and the level of quality and support may not be
213178
as expected from an official product. NLP Architect is intended to be used

dev-requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
sphinx
1+
sphinx==1.8.5
22
sphinx_rtd_theme
33
flake8-html
44
pep8

docs-source/source/CONTRIBUTING.rst

+10-23
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ Contribution Process
2222
* Create an issue on GitHub:
2323
https://github.com/NervanaSystems/nlp-architect/issues
2424

25-
2. Clone and/or update your checked out copy of nlp-architect to ensure you have the
26-
most recent commits from the master branch:
25+
2. Fork NLP Architect and/or update your checked out copy of
26+
nlp-architect to ensure you have the
27+
most recent commits from the master branch, for example:
2728

2829
.. code-block:: bash
2930
@@ -48,17 +49,16 @@ Contribution Process
4849

4950
.. code-block:: bash
5051
51-
nlp_architect test # ensure all are OK
52-
nlp_architect style # ensure there are no style related issues
52+
./scripts/run_tests.sh # ensure all are OK
53+
./scripts/check_style.sh # ensure there are no style related issues
5354
5455
5. If necessary you may want to update and/or rebuild the documentation.
5556
This all exists under docs-source/source and is in
5657
`Sphinx reStructuredText format <http://sphinx-doc.org/rest.html>`_:
5758

5859
.. code-block:: bash
5960
60-
cd scripts/
61-
sh create_docs.sh # builds the doc and starts a local server directly
61+
./scripts/create_docs.sh # builds the doc and starts a local server directly
6262
6363
6. Commit your changes and push your feature branch to your GitHub fork. Be
6464
sure to add a descriptive message and reference the GitHub issue associated
@@ -71,23 +71,10 @@ Contribution Process
7171
git commit -m "Added new awesome functionality. Closes issue #1"
7272
git push origin my_new_feature_branch
7373
74-
7. Create a new pull request to get your feature branch merged into master for
75-
others to use. You'll first need to ensure your feature branch contains the
76-
latest changes from master. Furthermore, internal devs will need to assign
77-
the request to someone else for a code review. You must also ensure there
78-
are no errors when run through the items defined in step 4.
79-
80-
.. code-block:: bash
81-
82-
# (external contribs): make a new pull request:
83-
https://github.com/NervanaSystems/nlp-architect/pulls
84-
85-
# merge latest master changes into your feature branch
86-
git fetch origin
87-
git checkout master
88-
git pull origin master
89-
git checkout my_new_feature_branch
90-
git merge master # you may need to manually resolve any merge conflicts
74+
7. Create a new `pull request <https://github.com/NervanaSystems/nlp-architect/pulls>`_
75+
to get your feature branch merged into master for others to use.
76+
You'll first need to ensure your feature branch contains the latest changes from
77+
master.
9178

9279
8. If there are issues you can continue to push commits to your feature branch
9380
by following step 6. They will automatically be added to this same merge

docs-source/source/api.rst

-138
This file was deleted.
+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
.. ---------------------------------------------------------------------------
2+
.. Copyright 2017-2018 Intel Corporation
3+
..
4+
.. Licensed under the Apache License, Version 2.0 (the "License");
5+
.. you may not use this file except in compliance with the License.
6+
.. You may obtain a copy of the License at
7+
..
8+
.. http://www.apache.org/licenses/LICENSE-2.0
9+
..
10+
.. Unless required by applicable law or agreed to in writing, software
11+
.. distributed under the License is distributed on an "AS IS" BASIS,
12+
.. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
.. See the License for the specific language governing permissions and
14+
.. limitations under the License.
15+
.. ---------------------------------------------------------------------------
16+
17+
=================
18+
Additional Models
19+
=================
20+
21+
22+
.. include:: crosslingual_emb.rst
23+
24+
----
25+
26+
.. include:: memn2n.rst
27+
28+
----
29+
30+
.. include:: reading_comprehension.rst

0 commit comments

Comments
 (0)