Class ImageTransformer
java.lang.Object
org.tribuo.interop.onnx.ImageTransformer
- All Implemented Interfaces:
com.oracle.labs.mlrg.olcut.config.Configurable,com.oracle.labs.mlrg.olcut.provenance.Provenancable<com.oracle.labs.mlrg.olcut.provenance.ConfiguredObjectProvenance>,Serializable,ExampleTransformer
Image transformer. Assumes the feature id numbers are linearised ids of the form
[0,0,0] = 0, [1,0,0] = 1, ..., [i,0,0] = i, [0,1,0] = i+1, ..., [i,j,0] = i*j, ...
[0,0,1] = (i*j)+1, ..., [i,j,k] = i*j*k.
ONNX expects images in the format [channels,height,width].
- See Also:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptioncom.oracle.labs.mlrg.olcut.provenance.ConfiguredObjectProvenancevoidUsed by the OLCUT configuration system, and should not be called by external code.toString()ai.onnxruntime.OnnxTensortransform(ai.onnxruntime.OrtEnvironment env, List<SparseVector> vectors) Converts a list ofSparseVectors representing a batch of features into aOnnxTensor.ai.onnxruntime.OnnxTensortransform(ai.onnxruntime.OrtEnvironment env, SparseVector vector) Converts aSparseVectorrepresenting the features into aOnnxTensor.
-
Constructor Details
-
ImageTransformer
-
-
Method Details
-
postConfig
Used by the OLCUT configuration system, and should not be called by external code.- Specified by:
postConfigin interfacecom.oracle.labs.mlrg.olcut.config.Configurable
-
transform
public ai.onnxruntime.OnnxTensor transform(ai.onnxruntime.OrtEnvironment env, SparseVector vector) throws ai.onnxruntime.OrtException Description copied from interface:ExampleTransformerConverts aSparseVectorrepresenting the features into aOnnxTensor.It generates it as a single example minibatch.
- Specified by:
transformin interfaceExampleTransformer- Parameters:
env- The OrtEnvironment to create the tensor in.vector- The features to convert.- Returns:
- A dense OnnxTensor representing this vector.
- Throws:
ai.onnxruntime.OrtException- if the transformation failed.
-
transform
public ai.onnxruntime.OnnxTensor transform(ai.onnxruntime.OrtEnvironment env, List<SparseVector> vectors) throws ai.onnxruntime.OrtException Description copied from interface:ExampleTransformerConverts a list ofSparseVectors representing a batch of features into aOnnxTensor.- Specified by:
transformin interfaceExampleTransformer- Parameters:
env- The OrtEnvironment to create the tensor in.vectors- The batch of features to convert.- Returns:
- A dense OnnxTensor representing this minibatch.
- Throws:
ai.onnxruntime.OrtException- if the transformation failed.
-
toString
-
getProvenance
- Specified by:
getProvenancein interfacecom.oracle.labs.mlrg.olcut.provenance.Provenancable<com.oracle.labs.mlrg.olcut.provenance.ConfiguredObjectProvenance>
-