-
海军贝叶斯分类器
学过概率的同学一定都知道贝叶斯定理:这个在250多年前发明的算法,在信息领域内有着无与伦比的地位。贝叶斯分类是一系列分类算法的总称,这类算法均以贝叶斯定理为基础,故统称为贝叶斯分类。朴素贝叶斯算法(Naive Bayesian) 是其中应用最为广泛的分类算法之一。朴素贝叶斯分类器基于一个简单的假定:给定目标值时属性之间相互条件独立。通过以上定理和“朴素”的假定,我们知道: 请点击左侧文件开始预览 !预览只提供20%的代码片段,完整代码需下载后查看 加载中 侵权举报 打分 发表评论 暂无评论
- 2022-05-23 05:14:50下载
- 积分:1
-
程序的要求是已知的,几个节点和节点的函数(×),…
本程序的要求是已知几个节点x及节点函数f(x),要求近似函数!只要输出每点函数,对角线上的值,和最后一行的值,为继续插值准备! 例如:0.00 0.00000 0.20 0.20134 0.30 0.30452 0.50 0.52110 得到结果:0.00000 0.20134 1.006700 0.30452 0.083666 0.52110 1.082900 0.170333 0.173334 f(0.230000)=0.249337 Rx(0.230000)=-1.46917e-09f-the procedural requirements are known, several nodes and node x function f (x), requiring similar function! As long as output per function point, the value of a diagonal, and the last line of duty, prepared to continue interpolation! For example : 0.00 0.00000 0.20134 0.30 0.20 0.50 0.52110 0.30452 outcome : 0.00000 0.30452 0.20134 1.006700 1.082900 0.083666 0.52110 f 0.170333 0.173334 (0.230000) = 0.249337 Rx (0.230000) =- 1.46917e- 09f
- 2023-02-16 14:55:03下载
- 积分:1
-
ex4 decompiler v2 2015
ex4反编译程序v2 2015 ex4反编译程序v2 2015 ex4反编译程序v2 2015 ex4反编译程序v2 2015 ex4反编译程序v2 2015 ex4反编译程序v2 2015 ex4反编译程序v2 2015 ex4反编译程序v2 2015
- 2022-02-12 02:48:31下载
- 积分:1
-
优化的Bezier插值C程序
优化的Bezier插值C程序-Bezier Interpolation optimized C Program
- 2023-01-04 17:20:03下载
- 积分:1
-
voc release3.1 windows 版本
VOC-release3.1windows版本
(行人检测使用变形部件为基础的模式)
下win32bit编译,matlab2013a版本
- 2022-06-14 15:17:59下载
- 积分:1
-
File contains the steepest descent algorithm, least
文件包含最速下降算法,最小二乘算法,霍夫曼编码-File contains the steepest descent algorithm, least-squares algorithm, Huffman coding
- 2023-07-30 23:10:03下载
- 积分:1
-
数据结构-算法-C语言-Demo
#ifndef _BINARY_TREE_H_INCLUDED#define _BINARY_TREE_H_INCLUDED#include #include templatestruct Bintree_node {T element;Bintree_node* lchild;Bintree_node* rchild;explicit Bintree_node(const T& elem=T(), Bintree_node* lchd=0, Bintree_node* rchd=0): element(elem), lchild(lchd), rchild(rchd) {}};templateclass Binary_tree {public:typedef Bintree_node* PBtn;Binary_tree();virtual ~Binary_tree();void clear();int depth() const;int size() const;virtual PBtn find(const T& elem) const=0;virtual void insert(const T& elem)=0;virtual void erase(const T& elem)=0;virtual void print(std::ostream& output) const=0;void print_tree(std::ostream& output) const;protected:
- 2022-01-29 04:39:50下载
- 积分:1
-
数字图像处理matlab版-冈萨雷斯的程序
数字图像处理matlab版-冈萨雷斯的程序
- 2022-05-13 01:58:43下载
- 积分:1
-
数值分析用抛物线y=a+bx+cx 拟合给定数据
数值分析用抛物线y=a+bx+cx 拟合给定数据-numerical analysis using a parabolic y = bx cx fitting given data
- 2022-03-22 15:11:58下载
- 积分:1
-
计算方法A中的雅可比算法 是我在学习计算方法时编写的 体现了雅可比算法计算求解的过程...
计算方法A中的雅可比算法 是我在学习计算方法时编写的 体现了雅可比算法计算求解的过程-A calculation method of Jacobi algorithm is calculated in the study prepared by the method reflects the Jacobian algorithm for Xie process
- 2023-05-23 21:35:04下载
- 积分:1