Make.LinearNoBiastype neuron_typ = {mutable w : Optimise.Algodiff.t;mutable init_typ : Init.typ;mutable in_shape : int array;mutable out_shape : int array;}val create : ?inputs:int -> int -> Init.typ -> neuron_typval connect : int array -> neuron_typ -> unitval init : neuron_typ -> unitval reset : neuron_typ -> unitval mktag : int -> neuron_typ -> unitval mkpar : neuron_typ -> Optimise.Algodiff.t arrayval mkpri : neuron_typ -> Optimise.Algodiff.t arrayval mkadj : neuron_typ -> Optimise.Algodiff.t arrayval update : neuron_typ -> Optimise.Algodiff.t array -> unitval copy : neuron_typ -> neuron_typval run : Optimise.Algodiff.t -> neuron_typ -> Optimise.Algodiff.tval to_string : neuron_typ -> string