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
基础教程推荐
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++,'if' 表达式中的变量声明 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01