Developer API

OnnxEmbeddedDllSettings

Defines the configuration for generating a portable ONNX-embedded DLL from a ZeroTrain model.

Properties of OnnxEmbeddedDllSettings

NameTypeDescription
NamespacestringSpecifies the namespace for the generated DLL. This allows the compiled engine to integrate seamlessly into the consumer's codebase.
ClassNamestringSpecifies the class name of the generated inference engine within the DLL.
VersionstringSpecifies the version of the generated artifacts. This value is applied to the assembly metadata.
FileBaseNamestringSpecifies the output file name of the generated artifacts. If not provided, a default name will be used.

Syntax

	"OnnxEmbeddedDllSettings": {
    "namespace": "MyCompany.AI",
    "className": "RiskEngine",
    "version": "1.0.0",
    "FileBaseName": "MyCompany.RiskEngine"
 }