Esempio n. 1
0
 def test_check_label_dict_2(self):
     """
     Unit test check label dict 2
     """
     xpl = SmartExplainer()
     xpl._case = 'regression'
     xpl.check_label_dict()
Esempio n. 2
0
 def test_check_label_dict_1(self):
     """
     Unit test check label dict 1
     """
     xpl = SmartExplainer(label_dict={1: 'Yes', 0: 'No'})
     xpl._classes = [0, 1]
     xpl._case = 'classification'
     xpl.check_label_dict()