loadFromFile static method
Implementation
static Future<ANN> loadFromFile(
String path, {
int? seed,
int? epochs,
double? lr,
}) async {
final f = File(path);
final s = await f.readAsString();
return fromJson(s, seed: seed, epochs: epochs, lr: lr);
}