From b5b5a1aa254d9be4f2491783b69056304fbfcd5c Mon Sep 17 00:00:00 2001 From: Giridhar Ganapavarapu Date: Wed, 10 May 2023 12:39:45 -0400 Subject: [PATCH] address comments from PR #175 Signed-off-by: Giridhar Ganapavarapu --- examples/README.md | 2 ++ examples/nncontrastive/nncontrastive_demo.ipynb | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/README.md b/examples/README.md index c3bbaae..5823b24 100644 --- a/examples/README.md +++ b/examples/README.md @@ -31,3 +31,5 @@ the user through the various steps of the notebook. - [GLRMExplainer and BRCGExplainer using Boston, Breast-cancer datasets](./rbm) [[on nbviewer](https://nbviewer.jupyter.org/github/IBM/AIX360/tree/master/examples/rbm/)] - [OTMatchingExplainer on Sentence Matching in NLP](./matching) [[on nbviewer](https://nbviewer.jupyter.org/github/IBM/AIX360/tree/master/examples/matching/matching-pairs-of-sentences.ipynb)] + +- [NearestNeighborContrastiveExplainer using Breast Cancer wisconsin dataset](./nncontrastive/nncontrastive_demo.ipynb)[[on nbviewer](https://nbviewer.org/github/Trusted-AI/AIX360/blob/master/examples/nncontrastive/nncontrastive_demo.ipynb)] diff --git a/examples/nncontrastive/nncontrastive_demo.ipynb b/examples/nncontrastive/nncontrastive_demo.ipynb index 9041d37..ea1970f 100644 --- a/examples/nncontrastive/nncontrastive_demo.ipynb +++ b/examples/nncontrastive/nncontrastive_demo.ipynb @@ -165,7 +165,7 @@ "\n", "### Train Classifier\n", "\n", - "As an example we train a randome forest model and use it \n", + "As an example we train a random forest model and use it \n", "- to select exemplars outside the explainer in case of model free.\n", "- as a black box model to explain using the explainer." ]