this repo has no description
1opam-version: "2.0"
2authors: "Théophile Bastian <contact@tobast.fr> and Noémie Fong"
3maintainer: "contact@tobast.fr"
4homepage: "https://github.com/tobast/OC4.5"
5bug-reports: "https://github.com/tobast/OC4.5/issues"
6dev-repo: "git+https://github.com/tobast/OC4.5.git"
7license: "LGPL-2.0-or-later"
8build: ["jbuilder" "build" "-p" name "-j" jobs]
9depends: [
10 "ocaml"
11 "jbuilder" {>= "1.0+beta7"}
12]
13synopsis: "Pure OCaml implementation of the C4.5 algorithm."
14description: """
15This algorithm is used to generate a decision tree from a dataset and a
16criteria set, and is usually found in machine learning. The algorithm
17description can be found in eg. "Efficient C4.5" by S. Ruggieri in
18IEEE transactions on knowledge and data engineering, vol. 14, no. 2,
19march/april 2002."""
20url {
21 src: "https://github.com/tobast/OC4.5/archive/v1.0.0.tar.gz"
22 checksum: [
23 "sha256=0be4360749d03cba90f2921f092437c75742a4903a7d28e19481b1f9f67c8e8e"
24 "md5=3ad2e5cd1c54c2a581cdba3920ac9ca5"
25 ]
26}