From @tomjemmett
one thing missing off that open plan register is some kind of grouping of the classes, as in {x, y, z} are mutually exclusive, but also form a total set
Examples:
- class_child, class_adult
- class_maternity, class_elective, class_nonelective
We could then use this for QA; treat them as one-hot encoding, create a query which adds each class as a column, sum the columns row wise, ensure that the sum = 1 for all rows
From @tomjemmett
Examples:
We could then use this for QA; treat them as one-hot encoding, create a query which adds each class as a column, sum the columns row wise, ensure that the sum = 1 for all rows