Skip to content

Commit

Permalink
fix json issue (#506)
Browse files Browse the repository at this point in the history
  • Loading branch information
qbc2016 authored Feb 1, 2023
1 parent 86d7dc3 commit f487260
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ def callback_func_for_feature_importance(self, message: Message):
self.msg_buffer['eval'][state]['feature_importance'] = {}
self.msg_buffer['eval'][state]['metrics'] = None
self.msg_buffer['eval'][state]['feature_importance'].update(
{sender: feature_importance})
{str(sender): feature_importance})
self._check_and_save_result()

def callback_funcs_for_metrics(self, message: Message):
Expand Down

0 comments on commit f487260

Please sign in to comment.