owl_neural.ml1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18# 1 "src/owl/neural/owl_neural.ml" (* * OWL - an OCaml numerical library for scientific computing * Copyright (c) 2016-2018 Liang Wang <liang.wang@cl.cam.ac.uk> *) (** {6 Single precision neural network} *) module S = struct include Owl_neural_generic.Make (Owl_dense_ndarray.S) module Parallel = Owl_neural_parallel.Make (Graph) end (** {6 Double precision neural network} *) module D = Owl_neural_generic.Make (Owl_dense_ndarray.D)