fit method
Implementation
void fit(
List<List<int>> X,
List<List<double>> Y, {
int? batchSize,
bool verbose = false,
}) {
final xs = X.map((toks) => _embedAndPool(toks)).toList();
head.fit(xs, Y, batchSize: batchSize, verbose: verbose);
}