Class ConfidencePredictingSequenceModel.Subsequence
java.lang.Object
org.tribuo.classification.sequence.ConfidencePredictingSequenceModel.Subsequence
- All Implemented Interfaces:
Serializable
- Enclosing class:
- ConfidencePredictingSequenceModel
public static class ConfidencePredictingSequenceModel.Subsequence
extends Object
implements Serializable
A range class used to define a subsequence of a SequenceExample.
- See Also:
-
Field Summary
-
Constructor Summary
ConstructorDescriptionSubsequence
(int begin, int end) Constructs a subsequence for the fixed range, exclusive of the end. -
Method Summary
-
Field Details
-
begin
public final int beginThe subsequence start index. -
end
public final int endThe subsequence end index.
-
-
Constructor Details
-
Subsequence
public Subsequence(int begin, int end) Constructs a subsequence for the fixed range, exclusive of the end.- Parameters:
begin
- The start element.end
- The end element.
-
-
Method Details