会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
华小电
新随笔
管理
2024年3月9日
Python | 信息熵 Information Entropy
摘要: def counter(list): c_dict = {} for i in list: if i in c_dict: c_dict[i] += 1 else: c_dict[i] = 1 return c_dict def entropy(x): counts = counter(x) #每个
阅读全文
posted @ 2024-03-09 10:08 华小电
阅读(109)
评论(0)
推荐(0)
编辑