fit method

void fit(
  1. List<List<List<List<double>>>> X,
  2. List<List<double>> Y, {
  3. int? batchSize,
  4. bool verbose = false,
})

Implementation

void fit(
  List<List<List<List<double>>>> X,
  List<List<double>> Y, {
  int? batchSize,
  bool verbose = false,
}) {
  final xs = _batchToFeatures(X);
  head.fit(xs, Y, batchSize: batchSize, verbose: verbose);
}