package teach import ( mat "gonum.org/v1/gonum/mat" ) type Teacher interface { GetData() *mat.Dense GetExpect() *mat.Dense Next() bool Reset() }