Class IntegerToOneHotTransform
- java.lang.Object
-
- org.datavec.api.transform.transform.BaseTransform
-
- org.datavec.api.transform.transform.integer.IntegerToOneHotTransform
-
public class IntegerToOneHotTransform extends BaseTransform
- See Also:
- Serialized Form
-
-
Field Summary
-
Fields inherited from class org.datavec.api.transform.transform.BaseTransform
inputSchema
-
-
Constructor Summary
Constructors Constructor Description IntegerToOneHotTransform(String columnName, int minValue, int maxValue)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringcolumnName()Returns a singular column name this op is meant to run onString[]columnNames()Returns column names this op is meant to run onObjectmap(Object input)Transform an object in to another objectList<Writable>map(List<Writable> writables)Transform a writable in to another writableObjectmapSequence(Object sequence)Transform a sequenceStringoutputColumnName()The output column name after the operation has been appliedString[]outputColumnNames()The output column names This will often be the same as the inputvoidsetInputSchema(Schema inputSchema)Set the input schema.StringtoString()Schematransform(Schema schema)-
Methods inherited from class org.datavec.api.transform.transform.BaseTransform
getInputSchema, mapSequence
-
-
-
-
Constructor Detail
-
IntegerToOneHotTransform
public IntegerToOneHotTransform(String columnName, int minValue, int maxValue)
-
-
Method Detail
-
setInputSchema
public void setInputSchema(Schema inputSchema)
Description copied from interface:ColumnOpSet the input schema.- Specified by:
setInputSchemain interfaceColumnOp- Overrides:
setInputSchemain classBaseTransform
-
toString
public String toString()
- Specified by:
toStringin classBaseTransform
-
map
public List<Writable> map(List<Writable> writables)
Description copied from interface:TransformTransform a writable in to another writable- Parameters:
writables- the record to transform- Returns:
- the transformed writable
-
map
public Object map(Object input)
Transform an object in to another object- Parameters:
input- the record to transform- Returns:
- the transformed writable
-
outputColumnName
public String outputColumnName()
The output column name after the operation has been applied- Returns:
- the output column name
-
outputColumnNames
public String[] outputColumnNames()
The output column names This will often be the same as the input- Returns:
- the output column names
-
columnNames
public String[] columnNames()
Returns column names this op is meant to run on- Returns:
-
columnName
public String columnName()
Returns a singular column name this op is meant to run on- Returns:
-
-