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] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33# "@runtest" {with-test} # tests require a working version of python with scikit-learn 34 "@doc" {with-doc} 35 ] 36] 37dev-repo: "git+https://github.com/pveber/prc.git" 38url { 39 src: 40 "https://github.com/pveber/prc/releases/download/v0.0.0/prc-v0.0.0.tbz" 41 checksum: [ 42 "sha256=dac4fe14ba1f3b32d90c674b2dd1ad2a712d21f6c15a9fc81331a3a85ab3d583" 43 "sha512=18db18fa981ac027b480847f7a35699abd0d0c851958d2c062635a8992fc0f215314593e9fd0b41701cc81d8cf60fe2d42c47f4f8eda674a01c6401e115b5d84" 44 ] 45} 46x-commit-hash: "1f1660bd8195522a0e05e288e1313969e92e7340"