public class Markov
extends java.lang.Object
Constructor | Description |
---|---|
Markov() |
Creates a new
Markov object ready to be trained with new text. |
Markov(Matrix<java.lang.String> matrix) |
Modifier and Type | Method | Description |
---|---|---|
java.lang.String |
generateSentence() |
Generates a new random sentence from the data used during training.
|
java.lang.String |
generateSentence(java.lang.String startingWord) |
Generates a new random sentence from the data used during training.
|
Matrix<java.lang.String> |
getMatrix() |
Returns a copy of the
Matrix containing all the prediction and probability data. |
void |
submit(java.io.File file) |
Incorporates the text within the specified file into the prediction system.
|
void |
submit(java.lang.String text) |
Incorporates the specified text into the prediction system.
|
public Markov()
Markov
object ready to be trained with new text.public Matrix<java.lang.String> getMatrix()
Matrix
containing all the prediction and probability data.Matrix
that contains all the prediction and probability data.public java.lang.String generateSentence()
public java.lang.String generateSentence(java.lang.String startingWord)
startingWord
- the first two words used to start the sentencepublic void submit(java.lang.String text)
text
- the text to be addedpublic void submit(java.io.File file) throws java.io.FileNotFoundException
file
- the text file containing the text to be incorporated into the prediction system.java.io.FileNotFoundException
- if for some reason the file cannot be found