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" 11 "conf-gnuplot" 12 "conf-r" 13 "cpm" 14 "dolog" {>= "4.0.0" & < "5.0.0"} 15 "dune" {>= "1.11" & < "3.0"} 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.2.tar.gz" 39 checksum: [ 40 "sha256=a624086d1f936986f04a38304d9afaf06c084de7e3b3b5ab54e278f97743f260" 41 "md5=4b637863b4bc4ed2e27de45cf0872736" 42 ] 43}