Click or drag to resize

TfLiteInvokeLoadUnmanagedModules Method

https://www.emgu.com
Attempts to load tensorflow modules from the specific location

Namespace:  Emgu.TF.Lite
Assembly:  Emgu.TF.Lite (in Emgu.TF.Lite.dll) Version: 2.19.0.1709+574f567263f3c76bb77304b9eeb79ab6660ba101
Syntax
public static bool LoadUnmanagedModules(
	string loadDirectory,
	params string[] unmanagedModules
)

Parameters

loadDirectory
Type: SystemString
The directory where the unmanaged modules will be loaded. If it is null, the default location will be used.
unmanagedModules
Type: SystemString
The names of tensorflow modules.

Return Value

Type: Boolean
True if all the modules has been loaded successfully
Remarks
If loadDirectory is null, the default location on windows is the dll's path appended by either "x64" or "x86", depends on the applications current mode.
See Also