AvsFilter_WEAVER_DeployModel


Header: AVLDL.h
Namespace: weaver
Module: DeepLearning

Loads a deep learning model and prepares its execution on a specific target device.

Syntax

void weaver::AvsFilter_WEAVER_DeployModel
(
	const atl::File& inModelFile,
	const atl::Optional<avl::DeviceKind::Type>& inDeviceType,
	const int inDeviceIndex,
	const atl::Array<atl::Optional<avl::TensorDataOrdering::Type>>& inDesiredOutputOrders,
	avl::WeaverModelId& outModelId
)

Parameters

Name Type Range Default Description
Input value inModelFile const File& A path to the model saved by Keras
Input value inDeviceType const Optional<DeviceKind::Type>& NIL A type of a device selected for deploying and executing the model. If not set, device depending on version (CPU/GPU) of installed Deep Learning add-on is selected. If not set, device depending on version (CPU/GPU) of installed Deep Learning add-on is selected.
Input value inDeviceIndex const int 0 - 0 An index of a device selected for deploying and executing the model.
Input value inDesiredOutputOrders const Array<Optional<TensorDataOrdering::Type>>& A required data order of the output tensors
Output value outModelId WeaverModelId& Identifier of the deployed model