如何使用C ++中的TensorFlow Estimator?

时间:2018-06-24 16:39:23

标签: python c++ tensorflow

我是TensorFlow的新手,但是我必须使用C ++实现TensorFlow模型。

我假设我可以使用Python定义模型(图形)并将其导出,并按照本文所述从C ++调用导出的图形。

Loading a TensorFlow graph with the C++ API

但是-由于我对它的底层知识了解有限,因此我不确定如何使用Estimator做同样的事情。这是因为显然我没有明确的“会话”或“图形”定义(不过我知道它被包装在里面)。

您能在这里告诉我一点吗?

1 个答案:

答案 0 :(得分:0)

由于C ++没有高级api(reference),并且本文中使用的tf.Session比Estimator的层次低,所以我个人认为这是不可能的。

我最初的假设是将TensorFlow Serving与C ++客户端(example)一起使用,但是任何想法都值得欢迎。