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
# 1 "src/owl/optimise/owl_regression.ml"
(*
 * OWL - an OCaml numerical library for scientific computing
 * Copyright (c) 2016-2018 Liang Wang <liang.wang@cl.cam.ac.uk>
 *)

(** [ 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 S = Owl_regression_generic.Make (Owl_dense_ndarray.S)

module D = Owl_regression_generic.Make (Owl_dense_ndarray.D)



(* ends here *)