Uses of Interface
org.datavec.api.transform.reduce.IAssociativeReducer
-
-
Uses of IAssociativeReducer in org.datavec.api.transform
Methods in org.datavec.api.transform with parameters of type IAssociativeReducer Modifier and Type Method Description TransformProcess.BuilderTransformProcess.Builder. reduce(IAssociativeReducer reducer)Reduce (i.e., aggregate/combine) a set of examples (typically by key).TransformProcess.BuilderTransformProcess.Builder. reduceSequence(IAssociativeReducer reducer)Reduce (i.e., aggregate/combine) a set of sequence examples - for each sequence individually.TransformProcess.BuilderTransformProcess.Builder. reduceSequenceByWindow(IAssociativeReducer reducer, WindowFunction windowFunction)Reduce (i.e., aggregate/combine) a set of sequence examples - for each sequence individually - using a window function.Constructors in org.datavec.api.transform with parameters of type IAssociativeReducer Constructor Description DataAction(IAssociativeReducer reducer) -
Uses of IAssociativeReducer in org.datavec.api.transform.reduce
Classes in org.datavec.api.transform.reduce that implement IAssociativeReducer Modifier and Type Class Description classReducer -
Uses of IAssociativeReducer in org.datavec.api.transform.sequence
Constructors in org.datavec.api.transform.sequence with parameters of type IAssociativeReducer Constructor Description ReduceSequenceTransform(IAssociativeReducer reducer) -
Uses of IAssociativeReducer in org.datavec.api.transform.sequence.window
Constructors in org.datavec.api.transform.sequence.window with parameters of type IAssociativeReducer Constructor Description ReduceSequenceByWindowTransform(IAssociativeReducer reducer, WindowFunction windowFunction) -
Uses of IAssociativeReducer in org.datavec.api.transform.serde
Methods in org.datavec.api.transform.serde that return IAssociativeReducer Modifier and Type Method Description IAssociativeReducerBaseSerializer. deserializeReducer(String str)Deserialize an IStringReducer serialized usingBaseSerializer.serialize(Object)Methods in org.datavec.api.transform.serde that return types with arguments of type IAssociativeReducer Modifier and Type Method Description List<IAssociativeReducer>BaseSerializer. deserializeReducerList(String str)Deserialize an IStringReducer List serialized usingBaseSerializer.serializeReducerList(List), or an array serialized using#serialize(IReducer[])Methods in org.datavec.api.transform.serde with parameters of type IAssociativeReducer Modifier and Type Method Description StringBaseSerializer. serialize(IAssociativeReducer[] reducers)Method parameters in org.datavec.api.transform.serde with type arguments of type IAssociativeReducer Modifier and Type Method Description StringBaseSerializer. serializeReducerList(List<IAssociativeReducer> list)Serialize a list of IReducersConstructor parameters in org.datavec.api.transform.serde with type arguments of type IAssociativeReducer Constructor Description ReducerList(List<IAssociativeReducer> list)
-