this repo has no description
1opam-version: "2.0"
2synopsis: "Utilities for precision-recall curves"
3description: """
4
5This library provides functions to compute precision-recall curves, as
6well as several methods to compute their AUC (area under curve)
7"""
8maintainer: ["philippe.veber@gmail.com"]
9authors: ["Philippe Veber"]
10license: "CeCILL-B"
11tags: ["precision" "recall" "statistics" "machine-learning"]
12homepage: "https://github.com/pveber/prc/"
13bug-reports: "https://github.com/pveber/prc/issues"
14depends: [
15 "alcotest" {with-test}
16 "core_kernel" {>= "v0.12.0"}
17 "dune" {>= "2.4"}
18 "gsl"
19 "ppx_jane"
20 "ppx_deriving" {with-test}
21 "sklearn" {with-test}
22]
23depopts: [
24 "ocaml-r"
25]
26conflicts: [
27 "ocaml-r" {< "0.5.0"}
28]
29build: [
30 ["dune" "subst"] {dev}
31 [
32 "dune"
33 "build"
34 "-p"
35 name
36 "-j"
37 jobs
38 "@install"
39# "@runtest" {with-test} # tests require a working version of python with scikit-learn
40 "@doc" {with-doc}
41 ]
42]
43dev-repo: "git+https://github.com/pveber/prc.git"
44url {
45 src: "https://github.com/pveber/prc/releases/download/v0.1.0/prc-0.1.0.tbz"
46 checksum: [
47 "sha256=898322ef7f722e37f332362a24c1ad5f1bf8f8bb396cdb549fb44d59fc4f769a"
48 "sha512=c85fc65530195913b20c7b0e1763938f3d45187ca5510a37514f5dec5b4b903a9e40b7621ce8509cf023f1ccb1045fc09b362d716b2e6340cbd5960919a65efc"
49 ]
50}
51x-commit-hash: "b672c507a793f9dc389665234a203e48f539ea6f"