Package | Description |
---|---|
org.datavec.api.transform | |
org.datavec.api.transform.reduce |
Modifier and Type | Method and Description |
---|---|
static ReduceOp |
ReduceOp.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReduceOp[] |
ReduceOp.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
Reducer.Builder |
Reducer.Builder.conditionalReduction(String column,
String outputName,
ReduceOp reduction,
Condition condition)
Conditional reduction: apply the reduce on a specified column, where the reduction occurs *only* on those
examples where the condition returns true.
|
Constructor and Description |
---|
Builder(ReduceOp defaultOp)
Create a Reducer builder, and set the default column reduction operation.
|
Reducer(List<String> keyColumns,
ReduceOp defaultOp,
Map<String,ReduceOp> opMap,
Map<String,ColumnReduction> customReductions,
Map<String,org.datavec.api.transform.reduce.Reducer.ConditionalReduction> conditionalReductions,
Set<String> ignoreInvalidInColumns) |
Constructor and Description |
---|
Reducer(List<String> keyColumns,
ReduceOp defaultOp,
Map<String,ReduceOp> opMap,
Map<String,ColumnReduction> customReductions,
Map<String,org.datavec.api.transform.reduce.Reducer.ConditionalReduction> conditionalReductions,
Set<String> ignoreInvalidInColumns) |
Copyright © 2016. All rights reserved.