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.
Note that the `setuptools` package from a recent version of `pip` is needed to
29
+
Note that the `setuptools` package from a recent version of `pip` is needed to
76
30
get the `make` command to build properly.
77
31
78
-
$ pip3 install setuptools
32
+
$ pip3 install -U setuptools
79
33
80
34
81
35
Install in development mode (default):
@@ -90,18 +44,18 @@ Activate the newly-created virtual environment:
90
44
91
45
Fire up your favorite IDE/text editor/terminal and start running models.
92
46
93
-
### Custom installations
47
+
### Custom installations
94
48
95
49
96
-
***Python 3 `venv`** The default installation instructions create a venv named
97
-
`.nlp_architect_env`. If this is not ideal for your needs, (for example,
98
-
if you want to name it something else or use an already-existing virtual env),
99
-
simply create or enter the local virtual environment you want to use, activate
50
+
***Python 3 `venv`** The default installation instructions create a venv named
51
+
`.nlp_architect_env`. If this is not ideal for your needs, (for example,
52
+
if you want to name it something else or use an already-existing virtual env),
53
+
simply create or enter the local virtual environment you want to use, activate
100
54
it, and install the library in development mode with:
101
55
102
56
$ (py3_venv) make install_no_virt_env
103
57
104
-
Note that `setuptools` from a recent version of `pip` is needed to get the
58
+
**Note** that `setuptools` from a recent version of `pip` is needed to get the
105
59
`make` command to build properly.
106
60
107
61
@@ -110,15 +64,71 @@ Fire up your favorite IDE/text editor/terminal and start running models.
110
64
$ make sysinstall
111
65
112
66
67
+
_Note that all installations use CPU-based installations of Tensorflow/Dynet/Neon/nGraph. To install GPU supported binaries please refer to the framework's website for installation instructions._
68
+
69
+
## NLP Architect overview
70
+
71
+
The current version of NLP Architect includes these features that we found
72
+
interesting from both research perspectives and practical applications:
73
+
74
+
* NLP core models and NLU modules that provide best in class performance: Intent
75
+
Extraction (IE), Name Entity Recognition (NER), Word Chunker, Dependency parser (BIST)
76
+
* Modules that address semantic understanding: co-locations, most
77
+
common word sense, NP embedding representation (NP2Vec)
78
+
* Components instrumental for conversational AI: ChatBot
0 commit comments