//! The models module
//!pubmodsequential;pubmodlosses;usecrate::layers::*;pubuselosses::*;pubtraitModel<T: NumT> {/// Calculate the output according to the input
fnpredict(&self, input:&Tensor<T>)->Result<Tensor<T>>;// Train the model using a input-output pair
// fn train_once(&mut self, input: &Tensor<T>, output: &Tensor<T>);
}