本文整理汇总了Python中tools.Tools.clear_zero_value方法的典型用法代码示例。如果您正苦于以下问题:Python Tools.clear_zero_value方法的具体用法?Python Tools.clear_zero_value怎么用?Python Tools.clear_zero_value使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类tools.Tools
的用法示例。
在下文中一共展示了Tools.clear_zero_value方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: get_current_saving_data
# 需要导入模块: from tools import Tools [as 别名]
# 或者: from tools.Tools import clear_zero_value [as 别名]
def get_current_saving_data(self) :
#! if we flush the model , and we can ignore the W_time and just using time_now to restore the W_time !!
#~ so we flush it !
if not self.is_flushed :
self._flush_time()
#! using a dict for more convenience when loading
saving_struct = {
'emit_feature_space' : self.emit_feature_space ,
'label_space' : self.label_space ,
'w' : Tools.clear_zero_value(self.W) ,
'w_sum' : Tools.clear_zero_value(self.W_sum) ,
'w_size' : self.W_size ,
'time_now' : self.time_now
}
return saving_struct