TensorFlow Estimator是一个高级TensorFlow API,它极大地简化了机器学习编程。 Estimator封装了模型的训练、评估、预测和导出功能。
入门
查看我们的Estimator入门指南,了解Estimator API的介绍。
安装
当您安装TensorFlow pip包时,tf.estimator
会一并安装。请参阅安装TensorFlow获取安装说明。
开发
如果您想在本地构建TensorFlow Estimator,您需要安装Bazel和安装TensorFlow。
# 构建TensorFlow Estimator whl文件
bazel build //tensorflow_estimator/tools/pip_package:build_pip_package
bazel-bin/tensorflow_estimator/tools/pip_package/build_pip_package /tmp/estimator_pip
# 运行所有Estimator测试
bazel test //tensorflow_estimator/...
贡献指南
如果您想为TensorFlow Estimator做出贡献,请务必查看贡献指南。
请注意,此仓库作为主TensorFlow包的一个组件包含在内,使用Estimators时遇到的任何问题都应在TensorFlow GitHub Issues下提出,因为我们不会单独跟踪此仓库中的问题。您可以在创建的任何问题中根据需要链接此仓库。
一般问题和讨论请查看TensorFlow讨论,具体问题请直接在Stack Overflow上提问。