getParams method

Map<String, dynamic> getParams()

Return a simple params map (weights and biases) without other metadata.

Implementation

Map<String, dynamic> getParams() {
  return {'weights': weights, 'biases': biases};
}