Add some indication on what to compile in TensorFlow (it's not well documented)

This commit is contained in:
Simon Giraudot 2018-12-12 10:06:57 +01:00
parent 3b0220482a
commit 3096425044
1 changed files with 9 additions and 2 deletions

View File

@ -597,8 +597,15 @@ The \sc{OpenCV} web site is <A HREF="http://opencv.org/">`http://opencv.org/`</A
\sc{TensorFlow} is a library designed for machine learning and deep learning.
In \cgal, the C++ API of \sc{TensorFlow} is used by the \ref PkgClassificationRef
package for neural network.
In \cgal, the C++ API of \sc{TensorFlow} is used by the \ref
PkgClassificationRef package for neural network. The C++ API can be
compiled using CMake: it is distributed as part of the official
package and is located in `tensorflow/contrib/cmake`. Be sure to
enable and compile the following targets:
- `tensorflow_BUILD_ALL_KERNELS`
- `tensorflow_BUILD_PYTHON_BINDINGS`
- `tensorflow_BUILD_SHARED_LIB`.
The \sc{TensorFlow} web site is <A HREF="https://www.tensorflow.org/">`https://www.tensorflow.org/`</A>.