package owl

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

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 Computing
 * Copyright (c) 2016-2022 Liang Wang <liang@ocaml.xyz>
 *)

(** {5 Single precision neural network} *)

module S = struct
  include Owl_neural_generic.Make (Owl_algodiff_primal_ops.S)

  (* module Parallel = Owl_neural_parallel.Make (Graph) *)
end

(** {5 Double precision neural network} *)

module D = struct
  include Owl_neural_generic.Make (Owl_algodiff_primal_ops.D)

  (* module Parallel = Owl_neural_parallel.Make (Graph) *)
end
OCaml

Innovation. Community. Security.