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

Commit d8c3e40

Browse files
author
yinyinl
committed
overview doc updates
1 parent 7871072 commit d8c3e40

File tree

4 files changed

+20
-18
lines changed

4 files changed

+20
-18
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66

77
NLP Architect is an open-source Python library for exploring the state-of-the-art deep learning topologies and techniques for natural language processing and natural
8-
language understanding. It is intended to be a space to promote research and
8+
language understanding. It is intended to be a platform for future research and
99
collaboration.
1010

1111
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/).

doc/source/index.rst

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ NLP Architect by Intel® AI Lab
2323
"""""""""""""""""""""""""""""""
2424

2525
NLP Architect is an open-source Python library for exploring the state-of-the-art deep learning topologies and techniques for natural language processing and natural
26-
language understanding. It is intended to be a space to promote research and
26+
language understanding. It is intended to be a platform for future research and
2727
collaboration.
2828

2929
The library includes our past and ongoing NLP research and development efforts as part of Intel AI Lab.
@@ -34,11 +34,11 @@ How can NLP Architect be used
3434
===============================
3535

3636
- Train models using provided algorithms, reference datasets and configurations
37-
- Train models using their own data
37+
- Train models using your own data
3838
- Create new/extend models based on existing models or topologies
39-
- Explore how deep learning models tackle these NLP tasks
39+
- Explore how deep learning models tackle various NLP tasks
4040
- Experiment and optimize state-of-the-art deep learning algorithms
41-
- integrate modules and utilities from the library to a solutions
41+
- integrate modules and utilities from the library to solutions
4242

4343

4444
Library Overview
@@ -64,8 +64,8 @@ Deep Learning frameworks
6464
Because of the current research nature of the library, several open source deep learning frameworks are used in this repository including:
6565

6666
- `Intel® Nervana™ graph`_
67-
- Intel® neon_
68-
- Tensorflow_
67+
- `Intel® neon`_
68+
- Tensorflow_ or `Intel-Optimized TensorFlow`_
6969
- Dynet_
7070
- Keras_
7171

@@ -83,9 +83,10 @@ We welcome collaboration, suggestions, and critiques. For information on how to
8383
on this project, please see the :doc:`developer guide <developer_guide>`.
8484

8585

86-
.. _neon: https://github.com/nervanasystems/neon
86+
.. _Intel® neon: https://github.com/nervanasystems/neon
8787
.. _Intel® Nervana™ graph: https://github.com/NervanaSystems/ngraph-python
8888
.. _Tensorflow: https://www.tensorflow.org/
89+
.. _Intel-Optimized TensorFlow: https://software.intel.com/en-us/articles/intel-optimized-tensorflow-wheel-now-available
8990
.. _Keras: https://keras.io/
9091
.. _Dynet: https://dynet.readthedocs.io/en/latest/
9192

@@ -104,7 +105,6 @@ on this project, please see the :doc:`developer guide <developer_guide>`.
104105
:maxdepth: 1
105106
:caption: NLP/NLU Components
106107

107-
np2vec.rst
108108
chunker.rst
109109
ner_crf.rst
110110
ne_expansion.rst
@@ -113,6 +113,7 @@ on this project, please see the :doc:`developer guide <developer_guide>`.
113113
bist_parser.rst
114114
spacy_bist.rst
115115
word_sense.rst
116+
np2vec.rst
116117

117118
.. toctree::
118119
:hidden:

doc/source/overview.rst

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Overview
2020

2121
NLP Architect is a repository for models exploring the state of the
2222
art deep learning techniques for natural language processing and natural
23-
language understanding. It is intended to be a space to promote research and
23+
language understanding. It is intended to be a platform for future research and
2424
collaboration.
2525

2626
The library includes our past and ongoing NLP research efforts as part of Intel AI Lab.
@@ -30,11 +30,11 @@ How can NLP Architect be used
3030
===============================
3131

3232
- Train models using provided algorithms, reference datasets and configurations
33-
- Train models using their own data
33+
- Train models using your own data
3434
- Create new/extend models based on existing models or topologies
35-
- Explore how deep learning models tackle these NLP tasks
35+
- Explore how deep learning models tackle various NLP tasks
3636
- Experiment and optimize state-of-the-art deep learning algorithms
37-
- integrate modules and utilities from the library to a solutions
37+
- integrate modules and utilities from the library to solutions
3838

3939

4040
Library Overview
@@ -59,8 +59,8 @@ Deep Learning frameworks
5959
Because of the current research nature of the library, several open source deep learning frameworks are used in this repository including:
6060

6161
- `Intel® Nervana™ graph`_
62-
- Intel® neon_
63-
- Tensorflow_
62+
- `Intel® neon`_
63+
- Tensorflow_ or `Intel-Optimized TensorFlow`_
6464
- Dynet_
6565
- Keras_
6666

@@ -78,8 +78,9 @@ We welcome collaboration, suggestions, and critiques. For information on how to
7878
on this project, please see the :doc:`developer guide <developer_guide>`.
7979

8080

81-
.. _neon: https://github.com/nervanasystems/neon
81+
.. _Intel® neon: https://github.com/nervanasystems/neon
8282
.. _Intel® Nervana™ graph: https://github.com/NervanaSystems/ngraph-python
8383
.. _Tensorflow: https://www.tensorflow.org/
84+
.. _Intel-Optimized TensorFlow: https://software.intel.com/en-us/articles/intel-optimized-tensorflow-wheel-now-available
8485
.. _Keras: https://keras.io/
85-
.. _Dynet: https://dynet.readthedocs.io/en/latest/
86+
.. _Dynet: https://dynet.readthedocs.io/en/latest/

doc/source/service.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ High-level models annotation structure
163163
164164
NLP Architect server - developers guide
165165
=======================================
166-
This section is for developers who wish to add a new service to NLP-Architect server.
166+
This section is for developers who wish to add a new service to NLP Architect server.
167167
168168
Adding a new service to the server
169169
----------------------------------

0 commit comments

Comments
 (0)