CS
文章平均质量分 61
wangsnoopy123
这个作者很懒,什么都没留下…
展开
-
python 数据处理入门0
this file is derived from exercise 0#1. Variables and data types1.1 operatorSome relational operators:SymbolTask Performed==True, if both sides are equal!=True, if both sides are not equal<True, if the left side is smaller>.原创 2021-10-22 05:41:07 · 346 阅读 · 2 评论 -
easygui problem: AttributeError: 'module' object has no attribute 'msgbox'
Chapter 6今天学到第六章easygui这一节的时候,按照书中的方法,自己从网上下载了easygui的安装包,解压后将easygui.py放在我的Python27文件夹下,但是运行出现了如下错误:>>>import easygui >>>easygui.msgbox("Hello There!") Traceback (most recen...原创 2018-08-14 00:16:13 · 1846 阅读 · 1 评论 -
Linear Discriminant
本章内容主要参考bishop的Pattern Recognition and Machine Learning1. Discriminant Function这里用的判别方程来源于Bayes Decision Theory:posterior probability: p(ckc_kck|x) = p(x∣ck)⋅p(ck)p(x)\frac{p(x|c_k)\cdot p(c_k)}{p...翻译 2018-12-18 16:29:05 · 679 阅读 · 1 评论