How to build and use Google TensorFlow C++ api(如何构建和使用 Google TensorFlow C++ api)
问题描述
我真的很想开始在 C++ 中使用 Google 的新 Tensorflow 库.网站和文档在如何构建项目的 C++ API 方面真的不清楚,我不知道从哪里开始.
I'm really eager to start using Google's new Tensorflow library in C++. The website and docs are just really unclear in terms of how to build the project's C++ API and I don't know where to start.
有更多经验的人可以通过发现和分享使用 tensorflow 的 C++ API 的指南来提供帮助吗?
Can someone with more experience help by discovering and sharing a guide to using tensorflow's C++ API?
推荐答案
我发现的一种使用 Tensorflow C++ API 的替代方法是使用 cppflow.
One alternative to using Tensorflow C++ API I found is to use cppflow.
它是围绕 Tensorflow C API 的轻量级 C++ 包装器.你得到非常小的可执行文件,它链接到 libtensorflow.so
已经编译的文件.还有一些使用示例,您可以使用 CMAKE 而不是 Bazel.
It's a lightweight C++ wrapper around Tensorflow C API. You get very small executables and it links against the libtensorflow.so
already compiled file. There are also examples of use and you use CMAKE instead of Bazel.
这篇关于如何构建和使用 Google TensorFlow C++ api的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何构建和使用 Google TensorFlow C++ api


基础教程推荐
- 常量变量在标题中不起作用 2021-01-01
- 我有静态或动态 boost 库吗? 2021-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 这个宏可以转换成函数吗? 2022-01-01