package owl

  1. Overview
  2. Docs
OCaml Scientific and Engineering Computing

Install

Dune Dependency

Authors

Maintainers

Sources

owl-1.2.tbz
sha256=3817a2e4391922c8a2225b4e33ca95da6809246994e6bf291a300c82d8cac6c5
sha512=68a21f540cb4a289419f35cd152d132af36f1000fb41f98bab6e100698820379e36d650c5aa70a0126513451b354f86a28ea4ecf6f1d3b196b5b5e56f0fac9bd

doc/src/owl/owl_regression.ml.html

Source file owl_regression.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/optimise/owl_regression.ml"
(*
 * OWL - OCaml Scientific Computing
 * Copyright (c) 2016-2022 Liang Wang <liang@ocaml.xyz>
 *)

(** [ Regression Module ]
  This module implements a set of regression functions. S module provides
  supports for single precision float numbers whilst D module provides supports
  for double precision float numbers.
*)

module Make_Embedded (A : Owl_types_ndarray_algodiff.Sig) = struct
  include
    Owl_regression_generic.Make (Owl_optimise_generic.Make (Owl_algodiff_generic.Make (A)))
end

module S = Make_Embedded (Owl_algodiff_primal_ops.S)
module D = Make_Embedded (Owl_algodiff_primal_ops.D)

(* ends here *)
OCaml

Innovation. Community. Security.