Skip to content

Commit

Permalink
Fix Giskard python beta version
Browse files Browse the repository at this point in the history
  • Loading branch information
alexcombessie committed Jun 6, 2023
1 parent 90b46c7 commit c018f24
Show file tree
Hide file tree
Showing 12 changed files with 8,291 additions and 641 deletions.
2 changes: 1 addition & 1 deletion python-client/docs/getting-started/quickstart.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
},
"outputs": [],
"source": [
"!pip install giskard"
"!pip install giskard>=2.0.0-b1"
]
},
{
Expand Down
18 changes: 9 additions & 9 deletions python-client/docs/guides/installation_library/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ If you don't want to use the UI features and your model is not a generative mode
:::{tab-item} Mac and Linux

```sh
pip install giskard
pip install giskard>=2.0.0-b1
```

:::

:::{tab-item} Windows

```sh
pip install giskard --user
pip install giskard>=2.0.0-b1 --user
```

:::
Expand All @@ -30,15 +30,15 @@ If you want to use the Giskard server but your model is not a generative model y
:::{tab-item} Mac and Linux

```sh
pip install giskard[server]
pip install giskard[server]>=2.0.0-b1
```

:::

:::{tab-item} Windows

```sh
pip install giskard[server] --user
pip install giskard[server]>=2.0.0-b1 --user
```

:::
Expand All @@ -53,15 +53,15 @@ If you don't want to use the UI features and your model is a generative model, y
:::{tab-item} Mac and Linux

```sh
pip install giskard[llm]
pip install giskard[llm]>=2.0.0-b1
```

:::

:::{tab-item} Windows

```sh
pip install giskard[llm] --user
pip install giskard[llm]>=2.0.0-b1 --user
```

:::
Expand All @@ -73,15 +73,15 @@ pip install giskard[llm] --user
:::{tab-item} Mac and Linux

```sh
pip install giskard[server, llm]
pip install giskard[server, llm]>=2.0.0-b1
```

:::

:::{tab-item} Windows

```sh
pip install giskard[server, llm] --user
pip install giskard[server, llm]>=2.0.0-b1 --user
```

:::
Expand Down Expand Up @@ -135,5 +135,5 @@ For instance, if you have dependency conflicts with `pandas`, please do:
```sh
pip uninstall giskard
pip uninstall pandas
pip install giskard
pip install giskard>=2.0.0-b1
```
1,508 changes: 1,426 additions & 82 deletions python-client/docs/reference/notebooks/amazon_review_classification_sklearn.ipynb

Large diffs are not rendered by default.

16 changes: 13 additions & 3 deletions python-client/docs/reference/notebooks/api_model.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,16 @@
{
"cell_type": "code",
"execution_count": null,
"id": "0361f8a8",
"metadata": {},
"outputs": [],
"source": [
"!pip install giskard>=2.0.0-b1"
]
},
{
"cell_type": "code",
"execution_count": 1,
"id": "fd6208a2",
"metadata": {},
"outputs": [],
Expand Down Expand Up @@ -93,9 +103,9 @@
],
"metadata": {
"kernelspec": {
"display_name": "venv",
"display_name": ".venv",
"language": "python",
"name": "venv"
"name": "python3"
},
"language_info": {
"codemirror_mode": {
Expand All @@ -107,7 +117,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.4"
"version": "3.10.11"
}
},
"nbformat": 4,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
},
"outputs": [],
"source": [
"!pip install giskard"
"!pip install giskard>=2.0.0-b1"
]
},
{
Expand Down
Loading

0 comments on commit c018f24

Please sign in to comment.