You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
5. Pass your model and dataset into the explainX function:
94
+
After you're done training the model, you can either access the complete explainability dashboard or access individual techniques.
95
+
96
+
97
+
## Complete Explainability Dashboard
98
+
99
+
To access the entire dashboard with all the explainability techniques under one roof, follow the code down below. It is great for sharing your work with your peers and managers in an interactive and easy to understand way.
100
+
101
+
5.1. Pass your model and dataset into the explainX function:
6. Click on the dashboard link to start exploring model behavior:
107
+
5.2. Click on the dashboard link to start exploring model behavior:
94
108
95
109
```python
110
+
96
111
App running on https://0.0.0.0:8080
112
+
113
+
```
114
+
115
+
116
+
## Explainability Modules
117
+
118
+
In this latest release, we have also given the option to use explainability techniques individually. This will allow the user to choose technique that fits their personal AI use case.
119
+
120
+
6.1. Pass your model, X_Data and Y_Data into the explainx_modules function.
121
+
122
+
```python
123
+
124
+
explainx_modules.ai(X_test, Y_test, model")
125
+
126
+
```
127
+
As an upgrade, we have eliminated the need to passin the model name as explainX is smart enough to identify the model typeand problem type i.e. classification or regression, by itself.
Module 6: Model Performance Comparison (Cohort Analysis)
167
+
```python
168
+
169
+
explainx_modules.cohort_analysis()
170
+
171
+
```
172
+
173
+
To access the modules within your jupyter notebook as IFrames, just pass the <b>mode='inline'</b> argument.
174
+
175
+
176
+
<b>For detailed description into each module, check out our documentation at https://www.docs.explainx.ai</b>
177
+
178
+
179
+
## Cloud Installation
180
+
99
181
**If you are running explainX on the cloud e.g., AWS Sagemaker?****https://0.0.0.0:8080** will not work.
100
182
Please visit our documentation for installation instructions for the cloud: [Cloud Installation Instructions](https://docs.explainx.ai/getting-started/installation)
101
183
102
184
After installation is complete, just open your **terminal**and run the following command.
0 commit comments