Last active
August 29, 2015 14:01
-
-
Save axgle/b226d71ca758c9b1cde6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// based on https://github.com/axgle/Naive-Bayes-Classifier | |
class NativeBayes{ | |
static function classify($table,$features,$category){ | |
$db=new pdo("mysql:dbname=bayes","root","root"); | |
$db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE,PDO::FETCH_ASSOC); | |
$sql="select distinct($category) from $table"; | |
$arg=array(); | |
foreach($db->query($sql)->fetchAll() as $row){ | |
$ck=key($row); | |
$cv=current($row); | |
$arg[$cv]=1; | |
$fs=''; | |
foreach($features as $fk=>$fv){ | |
$fs.=" ,sum($ck='$cv' and $fk='$fv') "; | |
} | |
$sql="select sum($ck='$cv') $fs from $table"; | |
foreach($db->query($sql)->fetchAll() as $count_row){ | |
//print_r($count_row); | |
$category_count=array_shift($count_row); | |
$exp=0; | |
foreach($count_row as $count){ | |
if(!$count){ | |
$count=0.00001; | |
} | |
$arg[$cv]*=$count; | |
$exp++; | |
} | |
$arg[$cv]=$arg[$cv]/pow($category_count,$exp-1); | |
} | |
} | |
return current(array_keys($arg,max($arg))); | |
} | |
} | |
$features =array('Education'=>'9th','Work'=>32,'Disease'=>'Bronchitis','Salary'=>3000); | |
//$features =array('Education'=>'Doctorate','Work'=>44,'Disease'=>'Bronchitis','Salary'=>3000); | |
$X=array('Education'=>'12th','Work'=>35,'Disease'=>'Flu','Salary'=>2000); | |
echo NativeBayes::classify('table1',$features,'Sex'); | |
/* | |
CREATE TABLE IF NOT EXISTS `table1` ( | |
`sl` int(4) NOT NULL AUTO_INCREMENT, | |
`Education` varchar(20) NOT NULL, | |
`Sex` varchar(1) NOT NULL, | |
`Work` int(3) NOT NULL, | |
`Disease` varchar(20) NOT NULL, | |
`Salary` int(6) NOT NULL, | |
PRIMARY KEY (`sl`) | |
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=20 ; | |
-- | |
-- Dumping data for table `table1` | |
-- | |
INSERT INTO `table1` (`sl`, `Education`, `Sex`, `Work`, `Disease`, `Salary`) VALUES | |
(1, '9th', 'M', 32, 'Bronchitis', 3000), | |
(2, '9th', 'M', 30, 'Cholera', 1000), | |
(3, '9th', 'M', 33, 'Flu', 2000), | |
(4, '10th', 'F', 35, 'Bronchitis', 2000), | |
(5, '10th', 'F', 36, 'Cholera', 3000), | |
(6, '11th', 'M', 37, 'Flu', 3000), | |
(7, '12th', 'M', 38, 'Cholera', 3000), | |
(8, '12th', 'F', 38, 'Flu', 3000), | |
(9, '11th', 'M', 37, 'Bronchitis', 1000), | |
(10, 'Masters', 'M', 41, 'Cholera', 1000), | |
(11, 'Bachelors', 'F', 39, 'Bronchitis', 2000), | |
(12, 'Masters', 'M', 42, 'Flu', 1000), | |
(13, 'Masters', 'M', 44, 'Flu', 2000), | |
(14, 'Bachelors', 'F', 38, 'Bronchitis', 1000), | |
(15, 'Doctorate', 'F', 44, 'Cholera', 2000), | |
(16, 'Masters', 'F', 40, 'Flu', 1000), | |
(17, 'Doctorate', 'F', 44, 'Bronchitis', 1000), | |
(18, 'Doctorate', 'F', 45, 'Cholera', 3000), | |
(19, 'Doctorate', 'F', 44, 'Cholera', 2000); | |
*/ | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment