Generate constraints from a Dataset
Overview
Verteego allows for the dynamic creation of multiple constraints directly from the data contained within a dataset. This functionality is instrumental in building scalable and adaptable optimization models that respond to varying data conditions.
Implementation
To automatically generate constraints from a dataset, you must specify the dataset to be used as the input and identify the relevant columns that will dictate the constraint parameters. In Verteego, this is achieved by referencing the desired column names, prefixed with the '@' symbol to denote their role in constraint generation.
Constraint Creation Process
For every row in the specified input dataset, Verteego examines the column values and generates constraints accordingly. These constraints reflect the conditions and relationships present within the dataset, ensuring the optimization model aligns with real-world scenarios and data-specific requirements.
Example
Below is a YAML configuration snippet illustrating how to set up the system for generating binary constraints:
With the provided configuration:
input_dataset
: Identifies 'my_dataset' as the source from which constraints will be generated.constraint_type
: Specifies that the constraints being generated are of the 'binary' type.left_column
,operator
,right_column
: These fields are dynamically filled for each constraint based on the values found in the corresponding columns in 'my_dataset', signified by the '@' prefix.delta
: Establishes an offset value for the constraints, which in this case is set to 0, meaning there is no additional value added to or subtracted from the constraint equation.
Last updated