From 29f7e24b9ea91efc5ed42c9aa30f979a32a52380 Mon Sep 17 00:00:00 2001 From: Tanay Soni Date: Wed, 29 Apr 2020 12:44:41 +0200 Subject: [PATCH] Update links --- README.rst | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.rst b/README.rst index bfc4a5a15b..3e665f30fa 100644 --- a/README.rst +++ b/README.rst @@ -36,7 +36,7 @@ Switching between different backends allows fast prototyping (SQLite) and scalab Core Features ============= -- **Powerful models**: Utilize all latest transformer based models (BERT, ALBERT roBERTa ...) +- **Powerful models**: Utilize all latest transformer based models (BERT, ALBERT, RoBERTa ...) - **Modular & future-proof**: Easily switch to newer models once they get published. - **Developer friendly**: Easy to debug, extend and modify. - **Scalable**: Production-ready deployments via Elasticsearch backend. @@ -57,9 +57,9 @@ Components Resources ========= -- Tutorial 1 - Basic QA Pipeline: `Jupyter notebook `_ or `Colab `_ -- Tutorial 2 - Fine-tuning a model on own data: `Jupyter notebook `_ or `Colab `_ -- Tutorial 3 - Using Elasticsearch as Backend: `Jupyter notebook `_ or `Colab `_ +- Tutorial 1 - Basic QA Pipeline: `Jupyter notebook `_ or `Colab `_ +- Tutorial 2 - Fine-tuning a model on own data: `Jupyter notebook `_ or `Colab `_ +- Tutorial 3 - Basic QA Pipeline without Elasticsearch: `Jupyter notebook `_ or `Colab `_ Quickstart ========== @@ -91,7 +91,7 @@ Retrievers can access an Elasticsearch index to find the relevant paragraphs(or You can get started by running a single Elasticsearch node using docker:: - docker run -d -p 9200:9200 -p 9300:9300 -e "discovery.type=single-node" elasticsearch:7.5.1 + docker run -d -p 9200:9200 -e "discovery.type=single-node" elasticsearch:7.6.1 SQL Backend -----------