-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6152 from LaurentMazare/opam-publish/tensorflow-o…
…caml.0.0.1 tensorflow-ocaml.0.0.1 - via opam-publish
- Loading branch information
Showing
3 changed files
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
TensorFlow bindings for OCaml | ||
|
||
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. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
opam-version: "1.2" | ||
maintainer: "Laurent Mazare <[email protected]>" | ||
homepage: "https://github.com/LaurentMazare/tensorflow-ocaml" | ||
bug-reports: "https://github.com/LaurentMazare/tensorflow-ocaml/issues" | ||
dev-repo: "git+https://github.com/LaurentMazare/tensorflow-ocaml.git" | ||
build: [make "tensorflow.lib"] | ||
authors: [ "Laurent Mazare" "Nicolas Oury" ] | ||
|
||
depends: [ | ||
"core_kernel" | ||
"ctypes" {>= "0.5"} | ||
"ctypes-foreign" | ||
"ocamlfind" | ||
"ocamlbuild" | ||
] | ||
depopts: "gnuplot" | ||
available: [ocaml-version >= "4.02.1"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
http: | ||
"https://github.com/LaurentMazare/tensorflow-ocaml/archive/v0.0.1.tar.gz" | ||
checksum: "71cf1460604a14b00fbf07dfc43450c1" |