You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 7, 2021. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+13-5Lines changed: 13 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,19 +1,25 @@
1
-
Naive Bayes Classifier implemented in Java.
1
+
Java Naive Bayes Classifier
2
2
==================
3
3
4
4
Nothing special. It works and is well documented, so you should get it running without wasting too much time searching for other alternatives on the net.
5
5
6
-
Here is an excerpt from the example. The classifier will classify strings as either positive or negative sentiment. Please refer to the full example for a more detailed documentation.
6
+
Example
7
+
------------------
8
+
9
+
Here is an excerpt from the example. The classifier will classify sentences (arrays of features) as sentences with either positive or negative sentiment. Please refer to the full example for a more detailed documentation.
7
10
8
11
```java
12
+
// Create a new bayes classifier with string categories and string features.
0 commit comments