Package org.intel.openvino
Class CompiledModel
- java.lang.Object
-
- org.intel.openvino.Wrapper
-
- org.intel.openvino.CompiledModel
-
public class CompiledModel extends Wrapper
This class represents a compiled model.A model is compiled by a specific device by applying multiple optimization transformations, then mapping to compute kernels.
-
-
Constructor Summary
Constructors Modifier Constructor Description protectedCompiledModel(long addr)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description InferRequestcreate_infer_request()Creates an inference request object used to infer the compiled model.protected voiddelete(long nativeObj)-
Methods inherited from class org.intel.openvino.Wrapper
finalize, getNativeObjAddr
-
-
-
-
Method Detail
-
create_infer_request
public InferRequest create_infer_request()
Creates an inference request object used to infer the compiled model. The created request has allocated input and output tensors (which can be changed later).- Returns:
InferRequestobject
-
-