Source file owl_neural.ml

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 1 "src/owl/neural/owl_neural.ml"
(*
 * OWL - OCaml Scientific and Engineering Computing
 * Copyright (c) 2016-2019 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 = struct
  include Owl_neural_generic.Make (Owl_dense_ndarray.D)
  (* module Parallel = Owl_neural_parallel.Make (Graph) *)
end