this repo has no description
1opam-version: "2.0"
2authors: "Francois Berenger"
3maintainer: "unixjunkie@sdf.org"
4homepage: "https://github.com/UnixJunkie/omlr"
5bug-reports: "https://github.com/UnixJunkie/omlr/issues"
6dev-repo: "git+https://github.com/UnixJunkie/omlr.git"
7license: "BSD-3-Clause"
8build: ["dune" "build" "-p" name "-j" jobs]
9depends: [
10 "batteries" {>= "3.0.0"}
11 "conf-gnuplot"
12 "conf-r"
13 "cpm" {>= "10.2.1"}
14 "dolog" {>= "4.0.0"}
15 "dune" {>= "1.11"}
16 "minicli" {>= "5.0.0"}
17 "ocaml"
18]
19synopsis: "Multiple Linear Regression model"
20description: """
21Train a MLR model using R.
22
23usage:
24./mlr_model
25 [-i <input.csv>]: input CSV file
26 [--NxCV <int>]: number of folds of cross validation
27 [-s|--save <filename>]: save model to file
28 [-l|--load <filename>]: restore model from file
29 [-o <filename>]: predictions output file
30 [--no-shuffle]: do not randomize input lines
31 [--no-header]: CSV file has no header
32 [--no-plot]: don't call gnuplot
33 [-d <char>]: field delimited in CSV file (default=',')
34 [-v]: verbose/debug mode
35 [-h|--help]: show this message
36"""
37url {
38 src: "https://github.com/UnixJunkie/omlr/archive/v1.0.3.tar.gz"
39 checksum: [
40 "sha256=1c23080f187d965980a680be10c706719241e420d7db638b983df0585ea09532"
41 "md5=8e1fd6610b09e1bf733718287b04e1ed"
42 ]
43}