|
|
Designing Decision ModelsIn ZeroTrain, decision models are defined using structured data. Each row represents a possible outcome, and inputs are evaluated against that structure. Core Idea
Example 1: Rule-Based Model (Optional Logic in Cells)In some cases, conditions can be expressed directly within the data.
Input{
"CreditScore": 720,
"Income": 55000
}
Result{
"decision": "APPROVE"
}
Example 2: Data-Driven Model (No Logic Required)Decision models do not require logic within the data. Rows can represent known scenarios, and the system evaluates alignment to determine the best outcome.
Input{
"CreditScore": 705,
"Income": 51000,
"EmploymentYears": 4
}
Result{
"decision": "APPROVE"
}
Key InsightDecision models can be defined using explicit conditions, structured data, or a combination of both. There is no requirement to encode logic within the data. Model Sources
Design Considerations
SummaryZeroTrain models are built from structured data. Logic can be included, but it is not required. The system evaluates inputs against the data to determine the most appropriate outcome. |