this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #20477 from UnixJunkie/oranger_433

added packages/oranger/oranger.4.3.3/opam

authored by

Marcello Seri and committed by
GitHub
0bd23e7a f768cc0c

+72
+72
packages/oranger/oranger.4.3.3/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "unixjunkie@sdf.org" 3 + authors: ["Francois Berenger"] 4 + homepage: "https://github.com/UnixJunkie/oranger" 5 + bug-reports: "https://github.com/UnixJunkie/oranger/issues" 6 + dev-repo: "git+https://github.com/UnixJunkie/oranger.git" 7 + license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 8 + build: [ 9 + ["dune" "build" "-p" name "-j" jobs] 10 + ["tar" "xzf" "0.9.11.tar.gz"] 11 + ["mkdir" "ranger-0.9.11/cpp_version/build"] 12 + ["sh" "-c" "cd ranger-0.9.11/cpp_version/build && %{conf-cmake:cmd}% ../"] 13 + [make "-C" "ranger-0.9.11/cpp_version/build"] 14 + ] 15 + install: [ 16 + ["cp" "ranger-0.9.11/cpp_version/build/ranger" "%{bin}%/ml_rf_ranger"] 17 + ] 18 + depends: [ 19 + "dune" {>= "1.0.0"} 20 + "conf-cmake" {build} 21 + "re" {>= "1.9.0"} 22 + "dolog" {>= "6.0.0"} 23 + "batteries" {>= "3.3.0"} 24 + "minicli" {>= "5.0.2"} 25 + "cpm" {>= "12.0.0"} 26 + "line_oriented" {>= "1.0.0"} 27 + "molenc" {>= "16.0.0"} 28 + "parany" {>= "12.0.3"} 29 + ] 30 + depopts: [ 31 + "conf-gnuplot" 32 + ] 33 + synopsis: "OCaml wrapper for the ranger (C++) random forests implementation" 34 + description: """ 35 + Ranger is run from the command line and data are exchanged via text files. 36 + This is quick and dirty, not a clean OCaml interface to ranger. 37 + The oranger_rfr program allows to train/test a random-forests regressor model. 38 + 39 + $ oranger_rfr 40 + usage: 41 + oranger_rfr [-p <float>]: proportion of the (randomized) dataset 42 + used to train (default=0.80) 43 + [-np <int>]: max number of processes (default=1) 44 + [-n <int>]: |RF|; default=100 45 + [--mtry <float>]: proportion of randomly selected features 46 + to use at each split (default=(sqrt(|features|))/|features|) 47 + [--scan-mtry]: scan for best mtry in [0.001,0.002,0.005,...,1.0] 48 + (incompatible with --mtry) 49 + [--mtry-range <string>]: mtrys to test e.g. "0.001,0.002,0.005" 50 + [-o <filename>]: output scores to file 51 + [--train <train.txt>]: training set (overrides -p) 52 + [--valid <valid.txt>]: validation set (overrides -p) 53 + [--test <test.txt>]: test set (overrides -p) 54 + [--NxCV <int>]: number of folds of cross validation 55 + [--seed <int>: fix random seed] 56 + [--no-regr-plot]: turn OFF regression plot 57 + [--rec-plot]: turn ON REC curve 58 + [--y-rand]: turn ON Y-randomization 59 + [-s <filename>]: save model to file 60 + [-l <filename>]: load model from file 61 + [--max-feat <int>]: max feature id. (cf. end of encoding dict) 62 + [-v]: verbose/debug mode 63 + [-h|--help]: show this help message 64 + """ 65 + extra-source "0.9.11.tar.gz" { 66 + src: "https://github.com/imbs-hl/ranger/archive/0.9.11.tar.gz" 67 + checksum: "md5=cf770dfdde5ef250bfd561ef2b0758ee" 68 + } 69 + url { 70 + src: "https://github.com/UnixJunkie/oranger/archive/v4.3.3.tar.gz" 71 + checksum: "md5=0c6b40873ca79cd656f323a009050fa2" 72 + }