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

Commit 898f116

Browse files
author
Peter Izsak
authored
Library maintenance (#130)
* Move solutions and old models out of main package * Remove/disable unused dependencies * Update setup.py and installation procedure * Update documentation * Improve CI
1 parent b721947 commit 898f116

File tree

518 files changed

+16842
-36281
lines changed

Some content is hidden

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

518 files changed

+16842
-36281
lines changed

.jenkins/Jenkinsfile

+57-55
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
* NLP Architect Jenkinsfile
33
*/
44

5+
def virt_env = '.nlp_env'
6+
7+
def createVirtualEnv(String name) {
8+
sh "python3 -m venv ${name}"
9+
}
10+
11+
def executeIn(String environment, String script) {
12+
sh ". ${environment}/bin/activate && " + script
13+
}
14+
515
pipeline {
616
agent {
717
node {
@@ -20,67 +30,59 @@ pipeline {
2030
}
2131
stage('Build environment') {
2232
steps {
23-
sh 'python3 -m venv .nlp_architect_env'
24-
sh """
25-
. .nlp_architect_env/bin/activate
26-
pip3 install -U pip setuptools h5py
27-
pip3 install -r requirements.txt
28-
pip3 install -r dev-requirements.txt
29-
pip3 install -e .
30-
python -m spacy download en
31-
"""
33+
createVirtualEnv virt_env
34+
executeIn virt_env, 'pip3 install -U pip setuptools'
35+
executeIn virt_env, 'pip3 install -U -e .[all,dev]'
36+
executeIn virt_env, 'python -m spacy download en'
3237
}
3338
}
34-
stage('Validation') {
35-
parallel {
36-
stage('Tests') {
37-
steps {
38-
sh """
39-
. .nlp_architect_env/bin/activate
40-
export LC_ALL=en_US.UTF-8
41-
export LANG=en_US.UTF-8
42-
pytest ./tests -rs -vv --cov=nlp_architect --junit-xml=pytest_unit.xml
43-
"""
44-
}
45-
post {
46-
always {
47-
junit 'pytest_unit.xml'
48-
}
49-
failure {
50-
script {
51-
currentBuild.result = 'FAILURE'
52-
}
53-
}
54-
}
39+
stage('Tests') {
40+
steps {
41+
executeIn virt_env, 'pytest ./ -rs -v -n 20 --dist=loadfile --cov=nlp_architect --junit-xml=pytest_unit.xml'
42+
}
43+
post {
44+
always {
45+
junit 'pytest_unit.xml'
5546
}
56-
stage('flake8') {
57-
steps {
58-
sh """
59-
. .nlp_architect_env/bin/activate
60-
./scripts/check_flake.sh
61-
"""
47+
failure {
48+
script {
49+
currentBuild.result = 'FAILURE'
6250
}
63-
post {
64-
failure {
65-
script {
66-
currentBuild.result = 'FAILURE'
67-
}
68-
}
51+
}
52+
}
53+
}
54+
stage('flake8') {
55+
steps {
56+
executeIn virt_env, 'flake8 examples nlp_architect tests solutions --config setup.cfg'
57+
}
58+
post {
59+
failure {
60+
script {
61+
currentBuild.result = 'FAILURE'
6962
}
7063
}
71-
stage('pylint') {
72-
steps {
73-
sh """
74-
. .nlp_architect_env/bin/activate
75-
./scripts/check_pylint.sh
76-
"""
64+
}
65+
}
66+
stage('pylint') {
67+
steps {
68+
executeIn virt_env, './scripts/check_pylint.sh'
69+
}
70+
post {
71+
failure {
72+
script {
73+
currentBuild.result = 'FAILURE'
7774
}
78-
post {
79-
failure {
80-
script {
81-
currentBuild.result = 'FAILURE'
82-
}
83-
}
75+
}
76+
}
77+
}
78+
stage('Code Style') {
79+
steps {
80+
executeIn virt_env, 'black --check --line-length 100 --target-version py36 examples nlp_architect solutions tests'
81+
}
82+
post {
83+
failure {
84+
script {
85+
currentBuild.result = 'FAILURE'
8486
}
8587
}
8688
}
@@ -104,4 +106,4 @@ pipeline {
104106
deleteDir()
105107
}
106108
}
107-
}
109+
}

MANIFEST.in

-6
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
global-exclude .DS_Store .editorconfig *.py[cod] __pycache__
2-
include nlp_architect/server/services.json
32
graft nlp_architect/utils/resources
4-
graft nlp_architect/solutions/set_expansion/ui
5-
graft nlp_architect/solutions/trend_analysis
6-
graft nlp_architect/solutions/absa_solution
7-
graft nlp_architect/solutions/absa_solution/style
8-
graft nlp_architect/server/angular-ui
93
graft nlp_architect/models/absa/inference/lexicons
104
graft nlp_architect/models/absa/train/lexicons

README.md

+13-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<p align="center">
22
<br>
3-
<img src="https://raw.githubusercontent.com/NervanaSystems/nlp-architect/master/assets/nlp_architect_logo.png" width="400"/>
3+
<img src="https://raw.githubusercontent.com/NervanaSystems/nlp-architect/master/docs-source/source/assets/nlp_architect_logo_trans.png" width="400"/>
44
<br>
55
<p>
66
<h2 align="center">
@@ -61,20 +61,31 @@ We recommend to install NLP Architect in a new python environment, to use python
6161

6262
### Install using `pip`
6363

64-
Includes only core library (for examples, tutorials and the rest clone the repo)
64+
Install core library only
6565

6666
```sh
6767
pip install nlp-architect
6868
```
6969

7070
### Install from source (Github)
7171

72+
Includes core library, examples, solutions and tutorials:
73+
7274
```sh
7375
git clone https://github.com/NervanaSystems/nlp-architect.git
7476
cd nlp-architect
7577
pip install -e . # install in developer mode
7678
```
7779

80+
### Running Examples and Solutions
81+
82+
To run provided examples and solutions please install the library with `[all]` flag which will install extra packages required. (requires installation from source)
83+
84+
```sh
85+
pip install .[all]
86+
```
87+
88+
7889
## Models
7990

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

assets/bist-demo-small.png

-75.4 KB
Binary file not shown.

assets/ie-demo-small.png

-65.7 KB
Binary file not shown.

assets/nlp_architect_logo_white.png

-17.4 KB
Binary file not shown.

dev-requirements.txt

-9
This file was deleted.

docker/Dockerfile

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ RUN git clone https://github.com/NervanaSystems/nlp-architect.git
1212
RUN export PYTHONPATH="$PYTHONPATH:/Users/nlp_user/nlp_architect"
1313
RUN export JUPYTER_PATH="${JUPYTER_PATH}:/Users/nlp_user/nlp_architect"
1414
WORKDIR "/home/nlp_user/nlp-architect"
15-
RUN pip3 install --no-cache-dir -e .
16-
RUN pip3 install --no-cache-dir -r dev-requirements.txt
15+
RUN pip3 install --no-cache-dir -e .[all,dev]
1716
EXPOSE 8080
1817
EXPOSE 8888

docs-source/source/absa_solution.rst

+7
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,13 @@ Solution execution
3939
All three stages of the solution are end-to-end executed by a dedicated UI.
4040
An example for running the UI is available at ``examples/absa/solution/absa_solution.py``.
4141

42+
Install solution extra packages:
43+
44+
.. code:: python
45+
46+
pip install -r solutions/absa_solution/requirements.txt
47+
48+
4249
.. code:: bash
4350
4451
python3 examples/absa/solution/absa_solution.py

docs-source/source/archived/memn2n.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ Question-Answering and information retrieval tasks.
4545

4646
Files
4747
=====
48-
- **nlp_architect/data/babi_dialog.py**: Data loader :py:class:`class <nlp_architect.data.babi_dialog.BABI_Dialog>` to download data if not present and perform preprocessing.
49-
- **nlp_architect/models/memn2n_dialogue.py**: Implementation of :py:class:`MemN2N_Dialog <nlp_architect.models.memn2n_dialogue.MemN2N_Dialog>` class for dialogue tasks.
48+
- **examples/memn2n_dialog/babi_dialog.py**: Data loader :py:class:`class <nlp_architect.data.babi_dialog.BABI_Dialog>` to download data if not present and perform preprocessing.
49+
- **examples/memn2n_dialog/memn2n_dialogue.py**: Implementation of :py:class:`MemN2N_Dialog <nlp_architect.models.memn2n_dialogue.MemN2N_Dialog>` class for dialogue tasks.
5050
- **examples/memn2n_dialog/train_model.py**: Training script to load dataset and train memory network.
5151
- **examples/memn2n_dialog/interactive.py**: Inference script to run interactive session with a trained goal oriented dialog agent.
5252
- **examples/memn2n_dialog/interactive_utils.py**: Utilities to support interactive mode and simulate backend database.

docs-source/source/archived/reading_comprehension.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Files
3535
- **examples/reading_comprehension/train.py** -Implements the end to end model along with the training commands
3636
- **examples/reading_comprehension/utils.py**- Implements different utility functions to set up the data loader and for evaluation.
3737
- **examples/reading_comprehension/prepare_data.py**- Implements the pipeline to preprocess the dataset
38-
- **nlp_architect/models/matchlstm_ansptr.py**- Defines the end to end MatchLSTM and :py:class:`Answer_Pointer <nlp_architect.models.matchlstm_ansptr.MatchLSTM_AnswerPointe>` network for Reading Comprehension
38+
- **examples/reading_comprehension/matchlstm_ansptr.py**- Defines the end to end MatchLSTM and :py:class:`Answer_Pointer <nlp_architect.models.matchlstm_ansptr.MatchLSTM_AnswerPointe>` network for Reading Comprehension
3939

4040
Dataset
4141
=======

docs-source/source/code_docs/nlp_architect.api.rst

-2
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,3 @@
2424
.. autoclass:: nlp_architect.api.ner_api.NerApi
2525

2626
.. autoclass:: nlp_architect.api.intent_extraction.IntentExtractionApi
27-
28-
.. autoclass:: nlp_architect.api.machine_comprehension.MachineComprehensionApi

docs-source/source/code_docs/service.rst

-22
This file was deleted.

docs-source/source/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@
270270

271271
# Grouping the document tree into Texinfo files. List of tuples
272272
# (source start file, target name, title, author,
273-
# dir menu entry, description, category)
273+
# directory menu entry, description, category)
274274
texinfo_documents = [('index', u'NLP Architect Documentation',
275275
u'Intel Corporation'), ]
276276

docs-source/source/developer_guide.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ development packages:
2929

3030
.. code:: bash
3131
32-
pip3 install -r dev-requirements.txt
32+
pip3 install -U -e .[dev]
3333
3434
3535
.. include:: CONTRIBUTING.rst

docs-source/source/generated_api/nlp_architect.api.rst

-8
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,6 @@ nlp\_architect.api.intent\_extraction\_api module
3636
:undoc-members:
3737
:show-inheritance:
3838

39-
nlp\_architect.api.machine\_comprehension\_api module
40-
-----------------------------------------------------
41-
42-
.. automodule:: nlp_architect.api.machine_comprehension_api
43-
:members:
44-
:undoc-members:
45-
:show-inheritance:
46-
4739
nlp\_architect.api.ner\_api module
4840
----------------------------------
4941

docs-source/source/generated_api/nlp_architect.data.rst

-16
Original file line numberDiff line numberDiff line change
@@ -11,22 +11,6 @@ Subpackages
1111
Submodules
1212
----------
1313

14-
nlp\_architect.data.amazon\_reviews module
15-
------------------------------------------
16-
17-
.. automodule:: nlp_architect.data.amazon_reviews
18-
:members:
19-
:undoc-members:
20-
:show-inheritance:
21-
22-
nlp\_architect.data.babi\_dialog module
23-
---------------------------------------
24-
25-
.. automodule:: nlp_architect.data.babi_dialog
26-
:members:
27-
:undoc-members:
28-
:show-inheritance:
29-
3014
nlp\_architect.data.conll module
3115
--------------------------------
3216

docs-source/source/generated_api/nlp_architect.models.gnmt.rst

-46
This file was deleted.

0 commit comments

Comments
 (0)