OnnxEmbeddedDllSettings
Defines the configuration for generating a portable ONNX-embedded DLL from a ZeroTrain model.
Properties of OnnxEmbeddedDllSettings
| Name | Type | Description |
| Namespace | string | Specifies the namespace for the generated DLL. This allows the compiled engine to integrate seamlessly into the consumer's codebase. |
| ClassName | string | Specifies the class name of the generated inference engine within the DLL. |
| Version | string | Specifies the version of the generated artifacts. This value is applied to the assembly metadata. |
| FileBaseName | string | Specifies 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"
}