Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
A B D G I M N O P S W

A

aNgramElements - Variable in class marf.Stats.Ngram
N-gram's parts.
addNgram(Ngram) - Method in class marf.Stats.Ngram
Adds an N-gram at the end of the N-gram elements array.

B

bSeen - Variable in class marf.Stats.Observation
 

D

dPosteriorProbability - Variable in class marf.Stats.Observation
 
dPriorProbability - Variable in class marf.Stats.Observation
 
dumpCSV() - Method in class marf.Stats.ProbabilityTable
Allows dumping the contents of the table in the CSV format.

G

getFrequency() - Method in class marf.Stats.StatisticalObject
Retrieves the object's frequency.
getLang() - Method in class marf.Stats.ProbabilityTable
Retrieves current language.
getLexeme() - Method in class marf.Stats.WordStats
Retrieves the lexeme of the object.
getMARFSourceCodeRevision() - Static method in class marf.Stats.Ngram
Returns source code revision information.
getMARFSourceCodeRevision() - Static method in class marf.Stats.Observation
Returns source code revision information.
getMARFSourceCodeRevision() - Static method in class marf.Stats.ProbabilityTable
Returns source code revision information.
getMARFSourceCodeRevision() - Static method in class marf.Stats.StatisticalObject
Returns source code revision information.
getMARFSourceCodeRevision() - Static method in class marf.Stats.StatsCollector
Returns source code revision information.
getMARFSourceCodeRevision() - Static method in class marf.Stats.WordStats
Returns source code revision information.
getOccurence(int) - Method in class marf.Stats.ProbabilityTable
Allows getting an occurence given the x coordinate.
getOccurence(int, int) - Method in class marf.Stats.ProbabilityTable
Allows getting an occurence given x and y coordinates.
getOccurence(int, int, int) - Method in class marf.Stats.ProbabilityTable
Allows getting an occurence given x, y, and z coordinates.
getOccurence(Vector) - Method in class marf.Stats.ProbabilityTable
Allows getting the occurence of a list of observations.
getRank() - Method in class marf.Stats.StatisticalObject
Restrieves the object's rank.
getSize() - Method in class marf.Stats.Ngram
Retrievs the size of the N-gram.

I

iCapacity - Variable in class marf.Stats.Ngram
N-gram's current capacity.
iFrequency - Variable in class marf.Stats.StatisticalObject
Word's frequency in a given corpus.
iRank - Variable in class marf.Stats.StatisticalObject
Word's rank in the corpus.
iSize - Variable in class marf.Stats.Ngram
0 - unset, 1 - unigram, 2 - bigram, 3 - trigram, etc.
incFrequency(Vector) - Method in class marf.Stats.ProbabilityTable
Increments the frequency of occurences of a list of observations.
incFrequency() - Method in class marf.Stats.StatisticalObject
Increments the object frequency by one.
incRank() - Method in class marf.Stats.StatisticalObject
Increments rank of the object by one.

M

marf.Stats - package marf.Stats
 

N

Ngram - class marf.Stats.Ngram.
N-gram Observation.
Ngram() - Constructor for class marf.Stats.Ngram
Constructs an unigram.
Ngram(int) - Constructor for class marf.Stats.Ngram
Constructs an N-gram of the specified size.
Ngram(Ngram[]) - Constructor for class marf.Stats.Ngram
Constructs an N-gram out of the N-gram elements.
normalize() - Method in class marf.Stats.ProbabilityTable
Not implemented.

O

Observation - class marf.Stats.Observation.
Generic Observation.
Observation() - Constructor for class marf.Stats.Observation
 
oColumnIndex - Variable in class marf.Stats.ProbabilityTable
Observations by columns.
oNMatrix - Variable in class marf.Stats.ProbabilityTable
Vector of vectors of probabilities, which are Double objects.

P

P(Observation, Observation) - Method in class marf.Stats.ProbabilityTable
Not implemented.
P(Observation, Vector) - Method in class marf.Stats.ProbabilityTable
Not implemented.
P(Vector) - Method in class marf.Stats.ProbabilityTable
Retrieves the probability of a list of observations as a number of occurences.
ProbabilityTable - class marf.Stats.ProbabilityTable.
Probability Table. TODO: use marf.util.Matrix. $Id: ProbabilityTable.java,v 1.34 2005/08/14 01:15:56 mokhov Exp $
ProbabilityTable(String) - Constructor for class marf.Stats.ProbabilityTable
Constructor with the language parameter other than default.

S

StatisticalObject - class marf.Stats.StatisticalObject.
Generic Statistical Object.
StatisticalObject() - Constructor for class marf.Stats.StatisticalObject
Constructs a default statistical object.
StatisticalObject(int) - Constructor for class marf.Stats.StatisticalObject
Constructs a statistical object with a frequency parameter
StatsCollector - class marf.Stats.StatsCollector.
TODO: Implement.
StatsCollector() - Constructor for class marf.Stats.StatsCollector
 
serialVersionUID - Static variable in class marf.Stats.Ngram
For serialization versioning.
serialVersionUID - Static variable in class marf.Stats.Observation
For serialization versioning.
serialVersionUID - Static variable in class marf.Stats.ProbabilityTable
For serialization versioning.
serialVersionUID - Static variable in class marf.Stats.StatisticalObject
For serialization versioning.
serialVersionUID - Static variable in class marf.Stats.WordStats
For serialization versioning.
setLang(String) - Method in class marf.Stats.ProbabilityTable
Allows setting a natural language associated with this table.
setNgram(int, Ngram) - Method in class marf.Stats.Ngram
Sets an N-gram at a specified index.
setOccurence(int, double) - Method in class marf.Stats.ProbabilityTable
Allows setting an occurence given the x coordinate.
setOccurence(int, int, double) - Method in class marf.Stats.ProbabilityTable
Allows setting an occurence given the x and y coordinates.
setOccurence(int, int, int, double) - Method in class marf.Stats.ProbabilityTable
Allows setting an occurence given the x, y, and z coordinates.
setOccurence(Vector, double) - Method in class marf.Stats.ProbabilityTable
Allows setting an occurence of a list of observations.
setRank(int) - Method in class marf.Stats.StatisticalObject
Allows setting rank of this object.
size() - Method in class marf.Stats.ProbabilityTable
Retrieves the size of the table.
strLang - Variable in class marf.Stats.ProbabilityTable
Current natural language.
strLexeme - Variable in class marf.Stats.WordStats
Spelling of the word.

W

WordStats - class marf.Stats.WordStats.
A pure container for statistics of a word --- no business logic.
WordStats() - Constructor for class marf.Stats.WordStats
Constructs the default objec with empty lexeme.
WordStats(int, String) - Constructor for class marf.Stats.WordStats
Constructs object with the desired frequency and the lexeme.
WordStats(int) - Constructor for class marf.Stats.WordStats
Constructs object with the desired frequency.

A B D G I M N O P S W