///|
/// Stores a validated dense numeric matrix and its integer class labels.
pub struct Dataset {
  feature_rows : Array[Array[Double]]
  class_labels : Array[Int]
  dataset_name : String
  column_count : Int
  sorted_classes : Array[Int]
} derive(Eq, Debug)