C# 클래스 Segmenter.Model.Criterion.CriterionMethod

Calculates actual and estimated characteristics of the subject word in the sequence
파일 보기 프로젝트 열기: intervals-mining-lab/libiada-core 1 사용 예제들

공개 메소드들

메소드 설명
DesignExpected ( List accord, int chainLength, int winLen, DataCollector minusOne, DataCollector mid ) : double

An estimated characteristic of occurrence of the subject word in the sequence

Frequency ( List std, int chainLength, int windowLength ) : double

Calculates frequency for convoluted or no convoluted chain An actual characteristic of occurrence of the subject word in the sequence

IntervalEstimate ( List stdData, int chainLength, int winLen, Link anchor ) : double

Calculates frequency for convoluted or no convoluted chain by an interval estimation. An actual characteristic of occurrence of the subject word in the sequence.

보호된 메소드들

메소드 설명
Probability ( int count, int chainLen ) : double

Calculates probability.

메소드 상세

DesignExpected() 공개 메소드

An estimated characteristic of occurrence of the subject word in the sequence
public DesignExpected ( List accord, int chainLength, int winLen, DataCollector minusOne, DataCollector mid ) : double
accord List /// Checking word. ///
chainLength int /// Length of whole sequence. ///
winLen int /// Length of the scanning window. ///
minusOne Segmenter.Base.Collectors.DataCollector /// Data for "minus one" subword. ///
mid Segmenter.Base.Collectors.DataCollector /// Data for "minus two" subword. ///
리턴 double

Frequency() 공개 추상적인 메소드

Calculates frequency for convoluted or no convoluted chain An actual characteristic of occurrence of the subject word in the sequence
public abstract Frequency ( List std, int chainLength, int windowLength ) : double
std List all positions of occurrence the word in the sequence
chainLength int length of whole sequence
windowLength int length of the scanning window
리턴 double

IntervalEstimate() 공개 메소드

Calculates frequency for convoluted or no convoluted chain by an interval estimation. An actual characteristic of occurrence of the subject word in the sequence.
public IntervalEstimate ( List stdData, int chainLength, int winLen, Link anchor ) : double
stdData List /// Positions of word. ///
chainLength int /// Length of whole sequence. ///
winLen int /// Length of the scanning window. ///
anchor Link /// Binding to the chain. ///
리턴 double

Probability() 보호된 메소드

Calculates probability.
protected Probability ( int count, int chainLen ) : double
count int /// The occurrences count. ///
chainLen int /// The chain len. /// All events. ///
리턴 double