Skip to content

Commit

Permalink
Fix typo and deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
andreArtelt committed Oct 15, 2020
1 parent 06ed8b4 commit d0a3608
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CEML
Counterfactuals for Explaining Machine Learning models
--------------------------------------------------------

CEML is a Python toolbox for computing counterfactuals. Counterfactuals can be use to explain the predictions of machine learing models.
CEML is a Python toolbox for computing counterfactuals. Counterfactuals can be used to explain the predictions of machine learing models.

It supports many common machine learning frameworks:

Expand Down Expand Up @@ -70,7 +70,7 @@ Quick example
if __name__ == "__main__":
# Load data
X, y = load_iris(True)
X, y = load_iris(return_X_y=True)
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.33, random_state=4242)
# Whitelist of features - list of features we can change/use when computing a counterfactual
Expand Down

0 comments on commit d0a3608

Please sign in to comment.