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