Skip to content

Commit 968d6cd

Browse files
committed
fixed bug with predict proba, version
1 parent 9ab754b commit 968d6cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lime/explanation.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ def jsonize(x):
252252
''' % random_id
253253

254254
predict_proba_js = ''
255-
if self.mode == "classifiction" and predict_proba:
255+
if self.mode == "classification" and predict_proba:
256256
predict_proba_js = u'''
257257
var pp_div = top_div.append('div')
258258
.classed('lime predict_proba', true);

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

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

0 commit comments

Comments
 (0)