Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dashboard and tutorials data, models and labels locations (issue #667) #699

Merged
merged 58 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
58 commits
Select commit Hold shift + click to select a range
2cc4c94
issue #667 removing the bee.jpg
elboyran Jan 26, 2024
d127ae0
issue #667 removing the bee_2.png
elboyran Jan 26, 2024
655708e
moved dashboard models into separate folder
elboyran Jan 26, 2024
e8e58f0
fixed a typo
elboyran Jan 26, 2024
c867974
model files
elboyran Jan 26, 2024
ed40573
moving labrl files to separate folder
elboyran Jan 26, 2024
b3b3773
Update _shared.py
elboyran Jan 26, 2024
9a75a75
Update _movie_model.py
elboyran Jan 26, 2024
1ef0174
Update 1_Images.py
elboyran Jan 26, 2024
1551fb7
Update 2_Text.py
elboyran Jan 26, 2024
98251f2
Update 3_Time_series.py
elboyran Jan 26, 2024
b9ad876
Update _shared.py
elboyran Jan 26, 2024
9b308ca
Update 1_Images.py
elboyran Jan 26, 2024
de0619f
Update 2_Text.py
elboyran Jan 26, 2024
f7d14a9
making linter happy
elboyran Jan 26, 2024
0e452a4
Update build.yml
elboyran Jan 29, 2024
a500904
making the linter happy
elboyran Jan 29, 2024
7c995e9
Merge branch '667-reorganize' of github.com:dianna-ai/dianna into 667…
elboyran Jan 29, 2024
fe0f1bc
Update build.yml
elboyran Jan 29, 2024
4e5ce25
realicating all tutorials, the used in them data, models and labels
elboyran Feb 2, 2024
6e9796d
Merge branch '667-reorganize' of github.com:dianna-ai/dianna into 667…
elboyran Feb 2, 2024
55f5684
#667 fixing paths in notebook
elboyran Mar 1, 2024
15a3871
Update README.md
elboyran Mar 1, 2024
6391cf5
#667 fixing paths in conversion notebook
elboyran Mar 1, 2024
fdbf2a8
#667 fixing paths in notebooks
elboyran Mar 1, 2024
2f0e6d5
#667 fixing paths in demo notebook
elboyran Mar 1, 2024
90c9d93
Update README.md
elboyran Mar 4, 2024
9b5fe07
Update README.md
elboyran Mar 4, 2024
28874e6
fixing paths in demo notebook
elboyran Mar 4, 2024
b539605
fixing paths in tf2onnx notebook
elboyran Mar 4, 2024
5e350f9
fixing paths in kernalshap geom. shapes notebook
elboyran Mar 4, 2024
f1298e3
fixing paths in kernalshap geom. shapes notebook
elboyran Mar 4, 2024
478c32b
fixing paths in all kernalshap notebooks
elboyran Mar 4, 2024
d021eb0
adding bee.jpg
elboyran Mar 4, 2024
cae91bc
fixing paths in all RISE notebooks
elboyran Mar 4, 2024
ebe1dbb
fixing paths in all LIME notebooks
elboyran Mar 4, 2024
6779b91
fixing remaning paths in 2 LIME notebooks
elboyran Mar 4, 2024
7d0cd98
Update kernel_mnist.nblink
elboyran Mar 4, 2024
637bfee
Update kernelshap_geometric_shapes.nblink
elboyran Mar 4, 2024
347f584
Update kernel_mnist.nblink
elboyran Mar 4, 2024
4e2ec33
Update kernel_mnist.nblink
elboyran Mar 4, 2024
8c6b3a2
Update kernel_mnist.nblink
elboyran Mar 4, 2024
8056cd4
Update kernel_mnist.nblink
elboyran Mar 4, 2024
6acc73d
Update kernel_mnist.nblink
elboyran Mar 4, 2024
2ac0a3f
Update kernel_mnist.nblink
elboyran Mar 4, 2024
a00588c
Update kernel_mnist.nblink
elboyran Mar 4, 2024
ea8f226
Update kernel_mnist.nblink
elboyran Mar 4, 2024
06cf397
Update kernel_mnist.nblink
elboyran Mar 4, 2024
58286c5
Update kernel_mnist.nblink
elboyran Mar 4, 2024
a9afe74
Update kernelshap_geometric_shapes.nblink
elboyran Mar 4, 2024
b680cb5
Update lime_images.nblink
elboyran Mar 4, 2024
a0d1e7e
Update lime_text.nblink
elboyran Mar 4, 2024
771d8a9
Update rise_imagenet.nblink
elboyran Mar 4, 2024
dd19712
Update rise_mnist.nblink
elboyran Mar 4, 2024
1cbbe2f
Update rise_text.nblink
elboyran Mar 4, 2024
f4aa7a1
Update kernelshap_geometric_shapes.nblink
elboyran Mar 4, 2024
46ce7dc
Merge branch 'main' into 667-reorganize
loostrum Mar 20, 2024
e21f0d5
re-add bee.jpg, required by rise_imagenet notebook
loostrum Mar 20, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions dianna/dashboard/_movie_model.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import os
import numpy as np
from _shared import data_directory
from _shared import label_directory
from scipy.special import expit as sigmoid
from torchtext.vocab import Vectors
from dianna import utils
Expand All @@ -13,7 +13,7 @@ class MovieReviewsModelRunner:
def __init__(self, model, word_vectors=None, max_filter_size=5):
"""Initializes the class."""
if word_vectors is None:
word_vectors = data_directory / 'movie_reviews_word_vectors.txt'
word_vectors = label_directory / 'movie_reviews_word_vectors.txt'

self.run_model = utils.get_function(model)
self.vocab = Vectors(word_vectors, cache=os.path.dirname(word_vectors))
Expand Down
3 changes: 2 additions & 1 deletion dianna/dashboard/_shared.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
from importlib.resources import files

data_directory = files('dianna.data')

model_directory = files('dianna.models')
label_directory = files('dianna.labels')

@st.cache_data
def get_base64_of_bin_file(png_file):
Expand Down
6 changes: 4 additions & 2 deletions dianna/dashboard/pages/1_Images.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@
from _shared import _methods_checkboxes
from _shared import add_sidebar_logo
from _shared import data_directory
from _shared import label_directory
from _shared import model_directory
from dianna.visualization import plot_image

add_sidebar_logo()
Expand Down Expand Up @@ -37,8 +39,8 @@

if load_example:
image_file = (data_directory / 'digit0.png')
image_model_file = (data_directory / 'mnist_model_tf.onnx')
image_label_file = (data_directory / 'labels_mnist.txt')
image_model_file = (model_directory / 'mnist_model_tf.onnx')
image_label_file = (label_directory / 'labels_mnist.txt')

if not (image_file and image_model_file and image_label_file):
st.info('Add your input data in the left panel to continue')
Expand Down
7 changes: 4 additions & 3 deletions dianna/dashboard/pages/2_Text.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
from _shared import _get_top_indices_and_labels
from _shared import _methods_checkboxes
from _shared import add_sidebar_logo
from _shared import data_directory
from _shared import label_directory
from _shared import model_directory
from _text_utils import format_word_importances

add_sidebar_logo()
Expand All @@ -35,8 +36,8 @@

if load_example:
text_input = 'The movie started out great but the ending was dissappointing'
text_model_file = data_directory / 'movie_review_model.onnx'
text_label_file = data_directory / 'labels_text.txt'
text_model_file = model_directory / 'movie_review_model.onnx'
text_label_file = label_directory / 'labels_text.txt'

if not (text_input and text_model_file and text_label_file):
st.info('Add your input data in the left panel to continue')
Expand Down
6 changes: 4 additions & 2 deletions dianna/dashboard/pages/3_Time_series.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@
from _shared import _methods_checkboxes
from _shared import add_sidebar_logo
from _shared import data_directory
from _shared import label_directory
from _shared import model_directory
from _ts_utils import _convert_to_segments
from _ts_utils import open_timeseries
from dianna.visualization import plot_timeseries
Expand All @@ -34,9 +36,9 @@

if load_example:
ts_file = (data_directory / 'weather_data.npy')
ts_model_file = (data_directory /
ts_model_file = (model_directory /
'season_prediction_model_temp_max_binary.onnx')
ts_label_file = (data_directory / 'weather_data_labels.txt')
ts_label_file = (label_directory / 'weather_data_labels.txt')

if not (ts_file and ts_model_file and ts_label_file):
st.info('Add your input data in the left panel to continue')
Expand Down
File renamed without changes
Binary file removed dianna/data/bee_2.png
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions docs/tutorials/kernel_mnist.nblink
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"path": "../../tutorials/kernelshap_mnist.ipynb"
}
"path": "../../tutorials/explainers/KernelSHAP/kernelshap_mnist.ipynb"
}
4 changes: 2 additions & 2 deletions docs/tutorials/kernelshap_geometric_shapes.nblink
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"path": "../../tutorials/kernelshap_geometric_shapes.ipynb"
}
"path": "../../tutorials/explainers/KernelSHAP/kernelshap_geometric_shapes.ipynb"
}
4 changes: 2 additions & 2 deletions docs/tutorials/lime_images.nblink
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"path": "../../tutorials/lime_images.ipynb"
}
"path": "../../tutorials/explainers/LIME/lime_images.ipynb"
}
4 changes: 2 additions & 2 deletions docs/tutorials/lime_text.nblink
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"path": "../../tutorials/lime_text.ipynb"
}
"path": "../../tutorials/explainers/LIME/lime_text.ipynb"
}
4 changes: 2 additions & 2 deletions docs/tutorials/rise_imagenet.nblink
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"path": "../../tutorials/rise_imagenet.ipynb"
}
"path": "../../tutorials/explainers/RISE/rise_imagenet.ipynb"
}
4 changes: 2 additions & 2 deletions docs/tutorials/rise_mnist.nblink
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"path": "../../tutorials/rise_mnist.ipynb"
}
"path": "../../tutorials/explainers/RISE/rise_mnist.ipynb"
}
4 changes: 2 additions & 2 deletions docs/tutorials/rise_text.nblink
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"path": "../../tutorials/rise_text.ipynb"
}
"path": "../../tutorials/explainers/RISE/rise_text.ipynb"
}
31 changes: 15 additions & 16 deletions tutorials/README.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,32 @@
<img width="150" alt="Logo_ER10" src="https://user-images.githubusercontent.com/3244249/151994514-b584b984-a148-4ade-80ee-0f88b0aefa45.png">

## Tutorials
This folder contains DIANNA tutorial notebooks.
This folder contains DIANNA tutorial notebooks.

To install the dependencies for the tutorials, run
```
pip install .[notebooks]
```

For general demonstration of DIANNA click on the logo [<img width="75" alt="Logo_ER10" src="https://user-images.githubusercontent.com/3244249/151994514-b584b984-a148-4ade-80ee-0f88b0aefa45.png">](https://github.com/dianna-ai/dianna/blob/main/tutorials/demo.ipynb) or run it in Colab: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/demo.ipynb).
For *general demonstration of DIANNA* click on the logo [<img width="75" alt="Logo_ER10" src="https://user-images.githubusercontent.com/3244249/151994514-b584b984-a148-4ade-80ee-0f88b0aefa45.png">](https://github.com/dianna-ai/dianna/blob/main/tutorials/demo.ipynb) or run it in Colab: [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/demo.ipynb).

Click on the XAI method (explainer) names to watch explanatory videos for the respective method.
For *tutorials on how to convert* an [Keras](https://keras.io/), [PyTorch](https://pytorch.org/), [Scikit-learn](https://scikit-learn.org/stable/) or [Tensorflow](https://www.tensorflow.org/) model to [ONNX](https://onnx.ai/), please see the [conversion tutorials](https://github.com/dianna-ai/dianna/blob/main/tutorials/conversion_onnx/).

Click on the logos below for direct access to a tutorial notebook for an explainability method and data modality/dataset.
For *specific XAI methods (explainers)*:
* Click on the explainer names to watch explanatory videos for the respective method.
* Click on the logos below for direct access to a tutorial notebook for a combination of explainer and data modality/dataset.

Run the tutorials directly in Google Colab by clicking on the Colab buttons below:
Run the tutorials directly in Google Colab by clicking on the Colab buttons below:

|*Modality* \ Method|RISE|[LIME](https://youtu.be/d6j6bofhj2M)|Kernel[SHAP](https://youtu.be/9haIOplEIGM)|
|:-----|:---|:---|:---|
|*Images*|[<img width="25" alt="mnist_zero_and_one_half_size" src="https://user-images.githubusercontent.com/3244249/152540187-b7a8239f-6742-437f-8f9b-35b950ce5ddb.png">](rise_mnist.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/rise_mnist.ipynb) | [<img width="20" alt="LeafSnap30 Logo" src="https://user-images.githubusercontent.com/3244249/151539100-dbdfe0f8-485f-45d4-a249-a1f79e970066.png">](lime_images.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/lime_images.ipynb) | [<img width="25" alt="mnist_zero_and_one_half_size" src="https://user-images.githubusercontent.com/3244249/152540187-b7a8239f-6742-437f-8f9b-35b950ce5ddb.png">](kernelshap_mnist.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/kernelshap_mnist.ipynb) |
| | [<img width="94" alt="ImageNet_autocrop" src="https://user-images.githubusercontent.com/3244249/152542090-fd78fde1-6dec-43b6-a7ae-eea964b8ae28.png">](rise_imagenet.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/rise_imagenet.ipynb) | | [<img width="20" alt="SimpleGeometric Logo" src="https://user-images.githubusercontent.com/3244249/151539027-f2fc3fc0-282a-4993-9680-74ee28bcd360.png">](kernelshap_geometric_shapes.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/kernelshap_geometric_shapes.ipynb)|
|*Text* |[<img width="25" alt="nlp-logo_half_size" src="https://user-images.githubusercontent.com/3244249/152540890-c8e1e37d-f0cc-4f84-80a4-2c59176cbf4c.png">](rise_text.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/rise_text.ipynb) |[<img width="25" alt="nlp-logo_half_size" src="https://user-images.githubusercontent.com/3244249/152540890-c8e1e37d-f0cc-4f84-80a4-2c59176cbf4c.png">](lime_text.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/lime_text.ipynb) |[]()|
| *Time series*| [<img width="25" alt="Weather Logo" src="https://user-images.githubusercontent.com/3244249/242001499-3ff3d639-ed2f-4a38-b7ac-957c984bce9f.png">](rise_timeseries_weather.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/rise_timeseries_weather.ipynb)| [<img width="25" alt="Weather Logo" src="https://user-images.githubusercontent.com/3244249/242001499-3ff3d639-ed2f-4a38-b7ac-957c984bce9f.png">](lime_timeseries_weather.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/lime_timeseries_weather.ipynb)| |
| | | [<img width="25" alt="Coffe Logo" src="https://user-images.githubusercontent.com/3244249/241999275-9ab50a0f-5da3-41d2-80e9-70d2c8769162.jpg">](lime_timeseries_coffee.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/lime_timeseries_coffee.ipynb) | |
| *Tabular* | | [<img width="75" alt="Penguin Logo" src="https://github.com/dianna-ai/dianna/assets/3244249/c7716ad3-f992-4557-80d9-1d8178c7ed57">](lime_tabular_penguin.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/lime_tabular_penguin.ipynb) | |
| | | [<img width="25" alt="Weather Logo" src="https://user-images.githubusercontent.com/3244249/242001499-3ff3d639-ed2f-4a38-b7ac-957c984bce9f.png">](lime_tabular_weather.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/lime_tabular_weather.ipynb)| |
|*Images*|[<img width="25" alt="mnist_zero_and_one_half_size" src="https://user-images.githubusercontent.com/3244249/152540187-b7a8239f-6742-437f-8f9b-35b950ce5ddb.png">](/explainers/RISE/rise_mnist.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/RISE/rise_mnist.ipynb) | [<img width="20" alt="LeafSnap30 Logo" src="https://user-images.githubusercontent.com/3244249/151539100-dbdfe0f8-485f-45d4-a249-a1f79e970066.png">](/explainers/LIME/lime_images.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/LIME/lime_images.ipynb) | [<img width="25" alt="mnist_zero_and_one_half_size" src="https://user-images.githubusercontent.com/3244249/152540187-b7a8239f-6742-437f-8f9b-35b950ce5ddb.png">](/explainers/KernelSHAP/kernelshap_mnist.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/KernelSHAP/kernelshap_mnist.ipynb) |
| | [<img width="94" alt="ImageNet_autocrop" src="https://user-images.githubusercontent.com/3244249/152542090-fd78fde1-6dec-43b6-a7ae-eea964b8ae28.png">](/explainers/RISE/rise_imagenet.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/RISE/rise_imagenet.ipynb) | | [<img width="20" alt="SimpleGeometric Logo" src="https://user-images.githubusercontent.com/3244249/151539027-f2fc3fc0-282a-4993-9680-74ee28bcd360.png">](/explainers/KernelSHAP/kernelshap_geometric_shapes.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/KernelSHAP/kernelshap_geometric_shapes.ipynb)|
|*Text* |[<img width="25" alt="nlp-logo_half_size" src="https://user-images.githubusercontent.com/3244249/152540890-c8e1e37d-f0cc-4f84-80a4-2c59176cbf4c.png">](/explainers/RISE/rise_text.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/RISE/rise_text.ipynb) |[<img width="25" alt="nlp-logo_half_size" src="https://user-images.githubusercontent.com/3244249/152540890-c8e1e37d-f0cc-4f84-80a4-2c59176cbf4c.png">](/explainers/LIME/lime_text.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/LIME/lime_text.ipynb) |[]()|
| *Time series*| [<img width="25" alt="Weather Logo" src="https://user-images.githubusercontent.com/3244249/242001499-3ff3d639-ed2f-4a38-b7ac-957c984bce9f.png">](/explainers/RISE/rise_timeseries_weather.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/RISE/rise_timeseries_weather.ipynb)| [<img width="25" alt="Weather Logo" src="https://user-images.githubusercontent.com/3244249/242001499-3ff3d639-ed2f-4a38-b7ac-957c984bce9f.png">](/explainers/LIME/lime_timeseries_weather.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/LIME/lime_timeseries_weather.ipynb)| |
| | | [<img width="25" alt="Coffe Logo" src="https://user-images.githubusercontent.com/3244249/241999275-9ab50a0f-5da3-41d2-80e9-70d2c8769162.jpg">](/explainers/LIME/lime_timeseries_coffee.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/LIME/lime_timeseries_coffee.ipynb) | |
| *Tabular* | | [<img width="75" alt="Penguin Logo" src="https://github.com/dianna-ai/dianna/assets/3244249/c7716ad3-f992-4557-80d9-1d8178c7ed57">](/explainers/LIME/lime_tabular_penguin.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/LIME/lime_tabular_penguin.ipynb) | |
| | | [<img width="25" alt="Weather Logo" src="https://user-images.githubusercontent.com/3244249/242001499-3ff3d639-ed2f-4a38-b7ac-957c984bce9f.png">](/explainers/LIME/lime_tabular_weather.ipynb) or [![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/dianna-ai/dianna/blob/main/tutorials/explainers/LIME/lime_tabular_weather.ipynb)| |

The datasets used in the tutorials are represented with their respective logos:
|Data modality|Dataset|Logo|
Expand All @@ -39,7 +41,4 @@ The datasets used in the tutorials are represented with their respective logos:
|*Tabular*| [Penguin dataset](https://www.kaggle.com/code/parulpandey/penguin-dataset-the-new-iris)| <img width="75" alt="Penguin Logo" src="https://github.com/dianna-ai/dianna/assets/3244249/c7716ad3-f992-4557-80d9-1d8178c7ed57"> | |
| | [Weather dataset](https://zenodo.org/record/7525955) | <img width="25" alt="Weather Logo" src="https://github.com/dianna-ai/dianna/assets/3244249/3ff3d639-ed2f-4a38-b7ac-957c984bce9f">|

The ONNX models used in the tutorials are available at [tutorials/models](https://github.com/dianna-ai/dianna/tree/main/tutorials/models).



The ONNX models used in the tutorials are available at [dianna/models](https://github.com/dianna-ai/dianna/tree/main/dianna/models).
Loading
Loading