From be1ed9e03b6f828e2955285d3d972960ba45cd65 Mon Sep 17 00:00:00 2001 From: Andrey Avtomonov Date: Wed, 7 Jun 2023 14:27:25 +0200 Subject: [PATCH] v2.0.0b4 --- README.md | 2 +- gradle.properties | 2 +- python-client/README.md | 2 +- .../notebooks/medical_transcript_classification_sklearn.ipynb | 2 +- .../notebooks/tripadvisor_sentiment_classification.ipynb | 4 ++-- python-client/pyproject.toml | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 1aae831f73..0226aacb46 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ And of course, Giskard works with any model, any environment and integrates seam ### Installation ```sh -pip install 'giskard[server]==2.0.0b3' +pip install 'giskard[server]==2.0.0b4' giskard server start ``` diff --git a/gradle.properties b/gradle.properties index 81f8997a16..98badbb138 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ -giskardVersion=2.0.0b3 +giskardVersion=2.0.0b4 rootProject.name=giskard profile=dev diff --git a/python-client/README.md b/python-client/README.md index e6f33a8cb6..4e7dd8e092 100644 --- a/python-client/README.md +++ b/python-client/README.md @@ -89,7 +89,7 @@ And of course, Giskard works with any model, any environment and integrates seam ### Installation ```sh -pip install "giskard[server]==2.0.0b3" +pip install "giskard[server]==2.0.0b4" giskard server start ``` diff --git a/python-client/docs/reference/notebooks/medical_transcript_classification_sklearn.ipynb b/python-client/docs/reference/notebooks/medical_transcript_classification_sklearn.ipynb index 8f165d518f..b07cd58e31 100644 --- a/python-client/docs/reference/notebooks/medical_transcript_classification_sklearn.ipynb +++ b/python-client/docs/reference/notebooks/medical_transcript_classification_sklearn.ipynb @@ -40,7 +40,7 @@ }, "outputs": [], "source": [ - "!pip install \"giskard==2.0.0b3\"" + "!pip install \"giskard==2.0.0b4\"" ] }, { diff --git a/python-client/docs/reference/notebooks/tripadvisor_sentiment_classification.ipynb b/python-client/docs/reference/notebooks/tripadvisor_sentiment_classification.ipynb index 9734cd67e1..11d93dc777 100644 --- a/python-client/docs/reference/notebooks/tripadvisor_sentiment_classification.ipynb +++ b/python-client/docs/reference/notebooks/tripadvisor_sentiment_classification.ipynb @@ -2425,7 +2425,7 @@ "\n", "# To start the Giskard server, run in your terminal within the Python\n", "# environment containing the dependencies of your model: \n", - "giskard server start --version 2.0.0b3\n", + "giskard server start --version 2.0.0b4\n", "giskard worker start -u http://localhost:19000/\n", "\n", "# Then upload your test suite to the opened Giskard server\n", @@ -3074,7 +3074,7 @@ "\n", "If you are using Google Colab and you want to install the Giskard server **locally**, you can run the Giskard server by executing this line in the terminal of your **local** machine (see the [documentation](https://docs.giskard.ai/en/latest/guides/installation_app/index.html)):\n", "\n", - "> giskard server start\n", + "> giskard server start --version 2.0.0b4\n", "\n", "Once the Giskard server is running, from the same terminal on your **local** machine, you can run:\n", "\n", diff --git a/python-client/pyproject.toml b/python-client/pyproject.toml index eb8414511e..547d709310 100644 --- a/python-client/pyproject.toml +++ b/python-client/pyproject.toml @@ -107,7 +107,7 @@ giskard = "giskard.cli:cli" name = "giskard" readme = "README.md" license = { text = "Apache Software License 2.0" } -version = "2.0.0b3" +version = "2.0.0b4" description = "The testing framework dedicated to ML models, from tabular to LLMs" authors = [ { name = "Giskard AI", email = "hello@giskard.ai" },