Bases: ABC
A container to store a dataset.
Contains abstract methods to get the groundtruth data,
the input data, and measurement data.
-
abstract get_ground_truth() → List[State]
Returns a list of groundtruth states.
-
abstract get_input_data() → List[Input]
Retruns a list of inputs.
-
abstract get_measurement_data() → List[Measurement]
Returns a list of measurements.