this repo has no description
1opam-version: "2.0" 2bug-reports: "https://github.com/LaurentMazare/tensorflow-ocaml/issues" 3homepage: "https://github.com/LaurentMazare/tensorflow-ocaml" 4dev-repo: "git+https://github.com/LaurentMazare/tensorflow-ocaml.git" 5maintainer: "Laurent Mazare <lmazare@gmail.com>" 6authors: [ "Laurent Mazare" ] 7 8build: [ 9 ["dune" "build" "-j" jobs "-p" name] 10] 11depends: [ 12 "base" {>= "0.11.0"} 13 "cmdliner" 14 "conf-wget" {build} 15 "ctypes" {>= "0.5"} 16 "ctypes-foreign" 17 "dune" {>= "1.3.0" & < "2.0"} 18 "dune-configurator" 19 "libtensorflow" 20 "ocaml" {>= "4.06"} 21 "ocamlfind" {build} 22 "stdio" 23] 24 25depopts: [ 26 "camlimages" 27 "gnuplot" 28 "npy" 29] 30 31available: [ os = "linux" ] 32 33synopsis: "TensorFlow bindings for OCaml" 34description: """ 35The tensorflow-ocaml project provides some OCaml bindings for TensorFlow, a 36machine learning framework. These bindings are in an early stage of their 37development. Some operators are not supported and the API is likely to change 38in the future. You may also encounter some segfaults. That being said they 39already contain the necessary to train a convolution network using various 40optimizers. 41""" 42url { 43 src: 44 "https://github.com/LaurentMazare/tensorflow-ocaml/archive/0.0.11.tar.gz" 45 checksum: [ 46 "md5=fddcb9d2655e2e4740457041ed93107f" 47 "sha512=7cbfc5f54cade7e05a648d7bc3a1ee9b4d08e414f1b3c7d8ffa375bfa954cb6f495a14863943e0ed12844100324451822ad88cef42faa1dd2d46bdefd57808ba" 48 ] 49}