Parameters
Name of the output feature. Used for dictionary access in simulation results.
Column name in the dataset. If
None, uses name.Scaling method:
'mean': Normalize to zero mean, unit std (default)None: No scaling[min, max]: Scale from range to [-1, 1]
Parent output name for derived outputs. Required if
relation is set.Relationship to parent for derived outputs:
'derivative':output[t+1] = output[t] + parent[t] * dt'delta':output[t+1] = output[t] + parent[t]'equal':output[t+1] = parent[t]None: Direct prediction (default)
Output Types
Direct Output
Most outputs are direct predictions from the neural network:Derived Output
Outputs can derive from other outputs (less common):Examples
Single Output
Multiple Outputs
Custom Dataset Column Name
Custom Scaling
Derived Outputs
Simulation Access
After simulation, access outputs by name:Validation
- If
relationis set,parentmust also be set - If
parentis set,relationmust also be set - For derived outputs, parent must be another Output name