Skip to content

Commit

Permalink
Merge pull request #437 from ThomasBouche/bump_version2_3
Browse files Browse the repository at this point in the history
Bump version 2.3
  • Loading branch information
MLecardonnel authored Mar 1, 2023
2 parents c28383d + 46b85d0 commit 953d312
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@

| Version | New Feature | Description | Tutorial |
|:-------------:|:-------------------------------------------------------------------------------------:|:--------------------------------------------------------------------------------------------------------------------------------------:|:--------:|
| 2.3.x | Additional dataset columns <br> Demo coming soon | In Webapp: Target and error columns added to dataset and possibility to add features outside the model for more filtering options | [<img src="https://raw.githubusercontent.com/MAIF/shapash/master/docs/_static/add_column_icon.png" width="50" title="add_column">](https://github.com/MAIF/shapash/blob/master/tutorial/tutorial01-Shapash-Overview-Launch-WebApp.ipynb)
| 2.3.x | Identity card <br> Demo coming soon | In webapp: New identity card to summarize the information of the selected sample | [<img src="https://raw.githubusercontent.com/MAIF/shapash/master/docs/_static/identity_card.png" width="50" title="identity">](https://github.com/MAIF/shapash/blob/master/tutorial/tutorial01-Shapash-Overview-Launch-WebApp.ipynb)
| 2.3.x | Additional dataset columns <br> (Demo coming soon) | In Webapp: Target and error columns added to dataset and possibility to add features outside the model for more filtering options | [<img src="https://raw.githubusercontent.com/MAIF/shapash/master/docs/_static/add_column_icon.png" width="50" title="add_column">](https://github.com/MAIF/shapash/blob/master/tutorial/tutorial01-Shapash-Overview-Launch-WebApp.ipynb)
| 2.3.x | Identity card <br> (Demo coming soon) | In Webapp: New identity card to summarize the information of the selected sample | [<img src="https://raw.githubusercontent.com/MAIF/shapash/master/docs/_static/identity_card.png" width="50" title="identity">](https://github.com/MAIF/shapash/blob/master/tutorial/tutorial01-Shapash-Overview-Launch-WebApp.ipynb)
| 2.2.x | Picking samples <br> [New demo](https://shapash-demo.ossbymaif.fr/) | New tab in the webapp for picking samples. The graph represents the "True Values Vs Predicted Values" | [<img src="https://raw.githubusercontent.com/MAIF/shapash/master/docs/_static/picking.png" width="50" title="picking">](https://github.com/MAIF/shapash/blob/master/tutorial/plot/tuto-plot06-prediction_plot.ipynb)
| 2.2.x | Dataset Filter <br> [New demo](https://shapash-demo.ossbymaif.fr/) | New tab in the webapp to filter data. And several improvements in the webapp: subtitles, labels, screen adjustments | [<img src="https://raw.githubusercontent.com/MAIF/shapash/master/docs/_static/webapp.png" width="50" title="webapp">](https://github.com/MAIF/shapash/blob/master/tutorial/tutorial01-Shapash-Overview-Launch-WebApp.ipynb)
| 2.0.x | Refactoring Shapash <br> | Refactoring attributes of compile methods and init. Refactoring implementation for new backends | [<img src="https://raw.githubusercontent.com/MAIF/shapash/master/docs/_static/modular.png" width="50" title="modular">](https://github.com/MAIF/shapash/blob/master/tutorial/backend/tuto-backend-01.ipynb)
Expand Down Expand Up @@ -197,7 +197,7 @@ xpl.compile(
x=Xtest,
y_pred=y_pred, # Optional: for your own prediction (by default: model.predict)
y_target=yTest, # Optional: allows to display True Values vs Predicted Values
additional_data=X_additional, # Optional: additional dataset of features outsite the model for filter in Webapp
additional_data=X_additional, # Optional: additional dataset of features for Webapp
additional_features_dict=features_dict_additional, # Optional: dict additional data
)
```
Expand Down
2 changes: 1 addition & 1 deletion docs/overview.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ The 4 steps to display results:
x=Xtest,
y_pred=y_pred, # Optional: for your own prediction (by default: model.predict)
y_target=yTest, # Optional: allows to display True Values vs Predicted Values
additional_data=X_additional, # Optional: additional dataset of features outsite the model for filter in Webapp
additional_data=X_additional, # Optional: additional dataset of features for Webapp
additional_features_dict=features_dict_additional, # Optional: dict additional data
)
Expand Down
2 changes: 1 addition & 1 deletion shapash/__version__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = (2, 2, 2)
VERSION = (2, 3, 0)

__version__ = ".".join(map(str, VERSION))

0 comments on commit 953d312

Please sign in to comment.