1- # GluonNLP + Numpy
1+ <h3 align =" center " >
2+ GluonNLP: Your Choice of Deep Learning for NLP
3+ </h3 >
24
3- Implementing NLP algorithms using the new numpy-like interface of MXNet. It's also a testbed for the next-generation release of GluonNLP.
4-
5- This is a work-in-progress.
5+ <p align =" center " >
6+ <a href="https://github.com/dmlc/gluon-nlp/actions"><img src="https://github.com/dmlc/gluon-nlp/workflows/continuous%20build/badge.svg"></a>
7+ <a href="https://codecov.io/gh/dmlc/gluon-nlp"><img src="https://codecov.io/gh/dmlc/gluon-nlp/branch/master/graph/badge.svg"></a>
8+ <a href="https://github.com/dmlc/gluonnlp/actions"><img src="https://img.shields.io/badge/python-3.6%2C3.8-blue.svg"></a>
9+ <a href="https://pypi.org/project/gluonnlp/#history"><img src="https://img.shields.io/pypi/v/gluonnlp.svg"></a>
10+ </p >
611
12+ GluonNLP is a toolkit that enables easy text preprocessing, datasets
13+ loading and neural models building to help you speed up your Natural
14+ Language Processing (NLP) research.
715
816# Features
917
10- - Data Pipeline for NLP
11- - AutoML support (TODO)
18+ For NLP Practitioners
19+ - Easy-to-use Data Pipeline
20+ - Automatically Train Models via AutoNLP (TODO)
21+
22+ For Researchers
1223- Pretrained Model Zoo
24+ - Programming with numpy-like API
25+
26+ For Engineers
1327- Fast Deployment
1428 - [ TVM] ( https://tvm.apache.org/ ) (TODO)
1529- AWS Integration
@@ -70,6 +84,18 @@ python3 -m gluonnlp.cli.preprocess help
7084
7185```
7286
87+ ### Frequently Asked Questions
88+ - ** Question** : I cannot you access the command line toolkits. By running ` nlp_data ` , it reports ` nlp_data: command not found ` .
89+
90+ This is sometimes because that you have installed glunonnlp to the user folder and
91+ the executables are installed to ` ~/.local/bin ` . You can try to change the ` PATH ` variable to
92+ also include '~ /.local/bin'.
93+
94+ ```
95+ export PATH=${PATH}:~/.local/bin
96+ ```
97+
98+
7399# Run Unittests
74100You may go to [ tests] ( tests ) to see all how to run the unittests.
75101
@@ -78,8 +104,8 @@ You may go to [tests](tests) to see all how to run the unittests.
78104You can use Docker to launch a JupyterLab development environment with GluonNLP installed.
79105
80106```
81- docker pull gluonai/gluon-nlp:v1.0.0
82- docker run --gpus all --rm -it -p 8888:8888 -p 8787:8787 -p 8786:8786 gluonai/gluon-nlp:v1.0.0
107+ docker pull gluonai/gluon-nlp:gpu-latest
108+ docker run --gpus all --rm -it -p 8888:8888 -p 8787:8787 -p 8786:8786 --shm-size=4g gluonai/gluon-nlp:gpu-latest
83109```
84110
85- For more details, you can refer to the guidance in [ tools/docker] .
111+ For more details, you can refer to the guidance in [ tools/docker] ( tools/docker ) .
0 commit comments