- 데블스캠프2011/둘째날/Machine-Learning . . . . 20 matches
* Naive Bayes classifier 개발 http://en.wikipedia.org/wiki/Naive_Bayes_classifier
* [데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/namsangboy]
* [데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/송지원]
* [데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/강성현]
* [데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/김수경]
* [데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/김동준]
* [데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/변형진]
- 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/송지원 . . . . 4 matches
* 이 프로그램은 Bayes Classifier 값을 구하는것 까지이고, 시간 관계상 값의 참/거짓 빈도는 엑셀을 이용해서 계산했습니다.
List<Double> bayes;
bayes = new ArrayList<Double>();
double bayesNumber = 0;
bayesNumber += Math.log((double)eNum / (double)pNum);
System.out.println(bayesNumber);
bayes.add(bayesNumber);
public void printBayes(){
System.out.println("bayes size : "+bayes.size());
String fname = "D:/bayesResult.txt";
for(int i=0; i < bayes.size(); i++){
str = bayes.get(i) + "\n";
testP.printBayes();
- 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/김동준 . . . . 3 matches
Describe 데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/김동준 here
- 데블스캠프2011/둘째날/후기 . . . . 3 matches
링크 : [:데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/김동준 Machine-Learning의 제 코드입니다.]
- 송지원 . . . . 3 matches
* [데블스캠프2011/둘째날/Machine-Learning/NaiveBayesClassifier/송지원]
- BaysianFiltering . . . . 2 matches
http://www.paulgraham.com/naivebayes.html
* Application : SpamBayes
그리고 PatternClassification 관련한 여러 알고리즘에도 BayesTheory 를 기본으로 하는게 상당히 많다.
- 데블스캠프2011/둘째날/Machine-Learning/SVM/namsangboy . . . . 1 match
from NaiveBayesian import *
- 서민관 . . . . 1 match
||데이터 마이닝 - 연관 규칙 분류기(Associative Rule based Classifier) : CPAR||
Found 8 matching pages out of 7555 total pages (5000 pages are searched)
You can also click here to search title.