Skip to content

Commit

Permalink
fixed bug with predict proba, version
Browse files Browse the repository at this point in the history
  • Loading branch information
marcotcr committed Jul 13, 2017
1 parent 9ab754b commit 968d6cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lime/explanation.py
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ def jsonize(x):
''' % random_id

predict_proba_js = ''
if self.mode == "classifiction" and predict_proba:
if self.mode == "classification" and predict_proba:
predict_proba_js = u'''
var pp_div = top_div.append('div')
.classed('lime predict_proba', true);
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup

setup(name='lime',
version='0.1.1.22',
version='0.1.1.23',
description='Local Interpretable Model-Agnostic Explanations for machine learning classifiers',
url='http://github.com/marcotcr/lime',
author='Marco Tulio Ribeiro',
Expand Down

0 comments on commit 968d6cd

Please sign in to comment.