Interface SequenceSplit
-
- All Superinterfaces:
Serializable
- All Known Implementing Classes:
SequenceSplitTimeSeparation,SplitMaxLengthSequence
public interface SequenceSplit extends Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SchemagetInputSchema()Getter for the input schemavoidsetInputSchema(Schema inputSchema)Sets the input schema for this splitList<List<List<Writable>>>split(List<List<Writable>> sequence)Split a sequence in to multiple time steps
-
-
-
Method Detail
-
split
List<List<List<Writable>>> split(List<List<Writable>> sequence)
Split a sequence in to multiple time steps- Parameters:
sequence- the sequence to split- Returns:
-
setInputSchema
void setInputSchema(Schema inputSchema)
Sets the input schema for this split- Parameters:
inputSchema- the schema to set
-
getInputSchema
Schema getInputSchema()
Getter for the input schema- Returns:
-
-