明天考试,可以带电脑,先写好了程序,省的按计算器……直接上Python的源代码。
[python]
#Naive Bayes
#Calculate the Prob. of class:cls
def P(data,cls_val,cls_name="class"):
cnt = 0.0
for e in data:
if e[cls_name] == cls_val:
cnt += 1[......]
明天考试,可以带电脑,先写好了程序,省的按计算器……直接上Python的源代码。
[python]
#Naive Bayes
#Calculate the Prob. of class:cls
def P(data,cls_val,cls_name="class"):
cnt = 0.0
for e in data:
if e[cls_name] == cls_val:
cnt += 1[......]