资源简介
基于Python贝叶斯代码,含训练集、测试集,简单易懂的分类和预测器
代码片段和文件信息
#! /usr/bin/env python
#coding=utf-8
# Authors: Hanxiaoyang
# simple naive bayes classifier to classify iris dataset
# 代码功能:简易朴素贝叶斯分类器,直接取iris数据集,根据花的多种数据特征,判定是什么花
# 详细说明参见博客http://blog.csdn.net/han_xiaoyang/article/details/50629608
# 作者:寒小阳
from sklearn import datasets
iris = datasets.load_iris()
iris.data[:5]
#array([[ 5.1 3.5 1.4 0.2]
# [ 4.9 3. 1.4 0.2]
# [ 4.7 3.2 1.3 0.2]
# [ 4.6 3.1 1.5 0.2]
# [ 5. 3.6 1.4 0.2]])
#我们假定sepal length sepal width petal length petal width 4个量独立且服从高斯分布,用贝叶斯分类器建模
from sklearn.naive_bayes import GaussianNB
gnb = GaussianNB()
y_pred = gnb.fit(iris.data iris.target).predict(iris.data)
right_num = (iris.target == y_pred).sum()
print(“Total t
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-03-08 20:36 naive_bayes-master\naive_bayes-master\
文件 1119 2016-02-04 16:58 naive_bayes-master\naive_bayes-master\iris_classification_using_naive_bayes.py
文件 5975 2018-03-08 20:43 naive_bayes-master\naive_bayes-master\jk.py
文件 1281142 2016-02-04 16:58 naive_bayes-master\naive_bayes-master\Kaggle_movie_reviewer_sentiment_analysis.ipynb
文件 104225 2016-02-04 16:58 naive_bayes-master\naive_bayes-master\Kaggle_San_Francisco_Crime_Classification.ipynb
文件 1436 2016-02-04 16:58 naive_bayes-master\naive_bayes-master\README.md
文件 6329 2018-03-08 20:24 naive_bayes-master\naive_bayes-master\sohu_news_topic_classification_using_naive_bayes.py
- 上一篇:网络爬虫python源代码
- 下一篇:python3-tkinter官方文档
相关资源
- python一个打砖块的小游戏
- python实验指导书 图文高清版
- python主动安装第三方库
- python爬取豆瓣top250电影信息
- python绘制 大蟒蛇
- python小程序(数组排序)
- Python去水印(基于cv2)
- Python 数据结构入门 - 二叉搜索树(
- python空心电感计算器
- python除法.docx
- 抽奖背后的秘密(python抽奖逻辑)
- 绘制统计学直方图茎叶图(matplotlib)
- python求解标准差
- python数据分析与处理
- 利用Python将照片在Excel中利用点阵图显
- python turtle 跳房子
- python 人群计数
- Python调用第三方API换脸
- “去哪儿吃”帮你选餐厅(python代码
- python 控制台登陆密码验证
- KNN算法的Python实现(datingrecd.ipynb)
- python核心编程第二版-习题答案
- python爬取笔趣阁小说
- Python程序设计基础试题以及答案(3
- python聊天-服务端与客户端
- python递归求最大公约数
- 用python画皮卡丘(基于turtle)
- 伟哥的python私房菜(中国程序员).
- pip一键升级(python脚本)
- 我的世界python编程——天空行走py格式
评论
共有 条评论