Jump to content

Connect SuperML | Leeroopedia MCP: Equip your AI agents with best practices, code verification, and debugging knowledge. Powered by Leeroo — building Organizational Superintelligence. Contact us at founders@leeroo.com.

Principle:Sdv dev SDV Inequality Constraint

From Leeroopedia
Revision as of 17:12, 16 February 2026 by Admin (talk | contribs) (Auto-imported from principles/Sdv_dev_SDV_Inequality_Constraint.md)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Knowledge Sources
Domains Data_Quality, Constraint_Satisfaction
Last Updated 2026-02-14 00:00 GMT

Overview

A column ordering constraint that ensures one column's values are always greater than (or equal to) another column's values in synthetic data.

Description

The inequality constraint enforces ordering relationships between two columns, such as start_date < end_date or min_price <= max_price. During data transformation, the constraint replaces the high column with the difference between high and low columns. This ensures the model learns the difference distribution (which is always positive) rather than two independent columns. During reverse transformation, the high column is reconstructed by adding the difference back to the low column.

Usage

Use this constraint when the dataset has paired columns with a known ordering relationship (e.g., temporal intervals, price ranges, min/max bounds).

Theoretical Basis

Transform: Replace high column with Δ=highlow (guaranteed non-negative)

Reverse Transform: Reconstruct high=low+Δ

Validation: Check high>low (strict) or highlow (non-strict)

Related Pages

Implemented By

Page Connections

Double-click a node to navigate. Hold to expand connections.
Principle
Implementation
Heuristic
Environment