资源简介
代码片段和文件信息
namespace nBayes
{
using System;
public class Analyzer
{
private float I = 0;
private float invI = 0;
public Analyzer()
{
this.Tolerance = .05f;
}
public float Tolerance { get; set; }
public CategorizationResult Categorize(Entry item Index first Index second)
{
float prediction = GetPrediction(item first second);
if (prediction <= .5f - this.Tolerance)
return CategorizationResult.Second;
if (prediction >= .5 + this.Tolerance)
return CategorizationResult.First;
return CategorizationResult.Undetermined;
}
public float GetPrediction(Entry item Index first Index second)
{
foreac
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2094 2016-08-24 23:10 Bayesian.sln
目录 0 2016-08-24 23:03 nBayes\
目录 0 2016-08-24 23:06 nBayes.Sample\
文件 161 2016-08-24 23:06 nBayes.Sample\app.config
目录 0 2016-08-24 23:03 nBayes.Sample\bin\
目录 0 2016-08-24 23:07 nBayes.Sample\bin\Debug\
文件 14336 2016-08-24 23:06 nBayes.Sample\bin\Debug\nBayes.dll
文件 46592 2016-08-24 23:06 nBayes.Sample\bin\Debug\nBayes.pdb
文件 11264 2016-08-24 23:07 nBayes.Sample\bin\Debug\nBayes.Sample.exe
文件 161 2016-08-24 23:06 nBayes.Sample\bin\Debug\nBayes.Sample.exe.config
文件 22016 2016-08-24 23:07 nBayes.Sample\bin\Debug\nBayes.Sample.pdb
文件 22656 2016-08-24 23:06 nBayes.Sample\bin\Debug\nBayes.Sample.vshost.exe
文件 161 2016-08-24 23:06 nBayes.Sample\bin\Debug\nBayes.Sample.vshost.exe.config
文件 490 2012-06-02 22:34 nBayes.Sample\bin\Debug\nBayes.Sample.vshost.exe.manifest
文件 3044 2016-08-24 23:06 nBayes.Sample\nBayes.Sample.csproj
目录 0 2016-08-24 23:03 nBayes.Sample\obj\
目录 0 2016-08-24 23:07 nBayes.Sample\obj\Debug\
文件 6666 2016-08-24 23:06 nBayes.Sample\obj\Debug\DesignTimeResolveAssemblyReferencesInput.cache
文件 858 2016-08-24 23:07 nBayes.Sample\obj\Debug\nBayes.Sample.csproj.FileListAbsolute.txt
文件 42809 2016-08-24 23:07 nBayes.Sample\obj\Debug\nBayes.Sample.csprojResolveAssemblyReference.cache
文件 11264 2016-08-24 23:07 nBayes.Sample\obj\Debug\nBayes.Sample.exe
文件 22016 2016-08-24 23:07 nBayes.Sample\obj\Debug\nBayes.Sample.pdb
目录 0 2016-08-24 23:03 nBayes.Sample\obj\Debug\TempPE\
文件 6659 2013-05-22 21:02 nBayes.Sample\Program.cs
目录 0 2013-05-22 21:02 nBayes.Sample\Properties\
文件 1420 2013-05-22 21:02 nBayes.Sample\Properties\AssemblyInfo.cs
目录 0 2016-08-24 23:18 nBayes.Tests\
目录 0 2016-08-24 23:09 nBayes.Tests\bin\
目录 0 2016-08-24 23:10 nBayes.Tests\bin\Debug\
文件 14336 2016-08-24 23:06 nBayes.Tests\bin\Debug\nBayes.dll
文件 46592 2016-08-24 23:06 nBayes.Tests\bin\Debug\nBayes.pdb
............此处省略42个文件信息
- 上一篇:GDI流程图控件c#源码
- 下一篇:C# 线程入门(由浅入深)
相关资源
- C#联通网络宽带测试 拨号
- C#百度指数抓取方法(2012年版本已失
- C# 隐藏某个磁盘分区
- C# 读取并编辑window系统的右键菜单
- C#自定义屏保(不断滚动的文字)
- C#winform打印指定区域 -控件拖动 -设置
- C#使用Hook进行改键
- 提供C#调用系统API函数弹出或收起光驱
- 通过C#自带的头文件(类)获取Windo
- C#获取电脑CPU以及内存使用率
- 利用uu云打码平台的lib实现的c#打码平
- tf-idf一种计算方法
- C# pop3 邮件接收程序
- C# 邮件群发示例 源码下载18952
- 动态抓取IPC#实现
- 贝叶斯基本分类
- XXTEA算法的C#实现和JS实现,可以互相
- C# 飞行棋 游戏源码(面向对象入门)
- 基于WinPcap的C# ARP欺骗软件().rar
- C#网络应用编程 矩阵并行计算练习
- 《C#版Ftp软件源码》
-
C# 播放铃声(AxWindowsMediaPla
yer)最新 - C# 把图片显示成椭圆形状
- C# 水平交错效果显示图像
- winform 浮雕效果的图像
- c# 底片效果显示图像就像旧式相机的
- 积木效果显示图像
- C# 隐形窗体 (没有边框,没有标题栏
- browerPhotoC#网页截图(不打开网页)
- C# 模拟时钟(自绘Graphics)
评论
共有 条评论