enumExportTarget
Specifies the output format for the export operation.
List of enumExportTarget
| Name | Description |
| ZTOnnx | ZeroTrain ONNX export. Generates a deterministic ONNX model built from ZeroTrain rules and semantics. This is the primary export format for portable, cross-platform execution. |
| DLL | Compiled DLL export. Generates a native .NET assembly containing the ZeroTrain decision logic. Provides maximum performance and tight integration for .NET environments. |
| ZTOnnx_From_Onnx | ONNX-to-ZeroTrain distillation export. Converts an existing ONNX model into a deterministic ZeroTrain ONNX model by exploring the input space and extracting decision behavior.
Requirements: - The source model must produce discrete (categorical) outputs such as classes, labels, or actions. - Models that output continuous values (regression) are not directly suitable without additional interpretation.
Purpose: - Transforms probabilistic or learned models into explainable, rule-based equivalents. - Enables deterministic execution and transparency of decision logic. |