Skip to content

Commit e69115f

Browse files
author
Julien Salinas
committed
Add tranformers based custom models to docs.
1 parent 5b587a0 commit e69115f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This is a Python client for the NLP Cloud API: https://docs.nlpcloud.io
44

55
NLP Cloud serves high performance pre-trained models for NER, sentiment-analysis, classification, summarization, question answering, and POS tagging, ready for production, served through a REST API.
66

7-
Pre-trained models are the spaCy models and some transformers-based models from Hugging Face. You can also deploy your own spaCy models.
7+
Pre-trained models are the spaCy models and some transformers-based models from Hugging Face. You can also deploy your own transformers-based models, or spaCy models.
88

99
If you face an issue, don't hesitate to raise it as a Github issue. Thanks!
1010

@@ -67,7 +67,7 @@ A json object is returned. Here is what it could look like:
6767

6868
Pass the model you want to use and the NLP Cloud token to the client during initialization.
6969

70-
The model can either be a pretrained model like `en_core_web_lg`, `bart-large-mnli`... but also one of your custom spaCy models using `custom_model/<model id>` (e.g. `custom_model/2568`).
70+
The model can either be a pretrained model like `en_core_web_lg`, `bart-large-mnli`... but also one of your custom transformers-based models, or spaCy models, using `custom_model/<model id>` (e.g. `custom_model/2568`).
7171

7272
Your token can be retrieved from your [NLP Cloud dashboard](https://nlpcloud.io/home/token).
7373

@@ -158,7 +158,7 @@ The above command returns a JSON object.
158158

159159
### Library Versions Endpoint
160160

161-
Call the `lib_versions()` method to know the versions of the libraries used behind the hood with the model (for example the spaCy version used).
161+
Call the `lib_versions()` method to know the versions of the libraries used behind the hood with the model (for example the PyTorch, TensorFlow, or spaCy version used).
162162

163163
```python
164164
client.lib_versions()

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
setup(
44
name='nlpcloud',
5-
version='1.0.7',
5+
version='1.0.8',
66
description='Python client for the NLP Cloud API',
7-
long_description="NLP Cloud serves high performance pre-trained models for NER, sentiment-analysis, classification, summarization, question answering, and POS tagging, ready for production, served through a REST API.\n\nThis is the Python client for the API.\n\nMore details here: https://nlpcloud.io\n\nDocumentation: https://docs.nlpcloud.io\n\nGithub: https://github.com/nlpcloud/nlpcloud-python",
7+
long_description="NLP Cloud serves high performance pre-trained or custom models for NER, sentiment-analysis, classification, summarization, question answering, and POS tagging, ready for production, served through a REST API.\n\nThis is the Python client for the API.\n\nMore details here: https://nlpcloud.io\n\nDocumentation: https://docs.nlpcloud.io\n\nGithub: https://github.com/nlpcloud/nlpcloud-python",
88
packages=['nlpcloud'],
99
author='Julien Salinas',
1010
author_email='[email protected]',

0 commit comments

Comments
 (0)