diff --git a/client/README.md b/client/README.md index 7884a7938..1e30e8898 100644 --- a/client/README.md +++ b/client/README.md @@ -16,9 +16,8 @@ ReadTheDoc - - GitHub release + + PyPI - Downloads Made by Han Xiao • :globe_with_meridians: https://hanxiao.github.io +
+ + + + + +
+ GNES is Generic Neural Elastic Search (logo made by Han Xiao) + + ✨Looking for X-as-service? Or more generic and cloud-native solution? +


Checkout my new project GNES! GNES is Generic Neural Elastic Search, a cloud-native semantic search system based on deep neural network. GNES enables large-scale index and semantic search for text-to-text, image-to-image, video-to-video and any-to-any content form.

+
+
+

What is it

**BERT** is a NLP model [developed by Google](https://github.com/google-research/bert) for pre-training language representations. It leverages an enormous amount of plain text data publicly available on the web and is trained in an unsupervised manner. Pre-training a BERT model is a fairly expensive yet one-time procedure for each language. Fortunately, Google released several pre-trained models where [you can download from here](https://github.com/google-research/bert#pre-trained-models). diff --git a/client/bert_serving/client/__init__.py b/client/bert_serving/client/__init__.py index f6b72736a..04943a52a 100644 --- a/client/bert_serving/client/__init__.py +++ b/client/bert_serving/client/__init__.py @@ -17,7 +17,7 @@ __all__ = ['__version__', 'BertClient', 'ConcurrentBertClient'] # in the future client version must match with server version -__version__ = '1.9.5' +__version__ = '1.9.7' if sys.version_info >= (3, 0): from ._py3_var import * diff --git a/server/README.md b/server/README.md index 7884a7938..1e30e8898 100644 --- a/server/README.md +++ b/server/README.md @@ -16,9 +16,8 @@ ReadTheDoc - - GitHub release + + PyPI - Downloads Made by Han Xiao • :globe_with_meridians: https://hanxiao.github.io +
+ + + + + +
+ GNES is Generic Neural Elastic Search (logo made by Han Xiao) + + ✨Looking for X-as-service? Or more generic and cloud-native solution? +


Checkout my new project GNES! GNES is Generic Neural Elastic Search, a cloud-native semantic search system based on deep neural network. GNES enables large-scale index and semantic search for text-to-text, image-to-image, video-to-video and any-to-any content form.

+
+
+

What is it

**BERT** is a NLP model [developed by Google](https://github.com/google-research/bert) for pre-training language representations. It leverages an enormous amount of plain text data publicly available on the web and is trained in an unsupervised manner. Pre-training a BERT model is a fairly expensive yet one-time procedure for each language. Fortunately, Google released several pre-trained models where [you can download from here](https://github.com/google-research/bert#pre-trained-models). diff --git a/server/bert_serving/server/__init__.py b/server/bert_serving/server/__init__.py index 7753e045b..b05e28548 100644 --- a/server/bert_serving/server/__init__.py +++ b/server/bert_serving/server/__init__.py @@ -24,7 +24,7 @@ from .zmq_decor import multi_socket __all__ = ['__version__', 'BertServer'] -__version__ = '1.9.5' +__version__ = '1.9.7' _tf_ver_ = check_tf_version()