当前位置:  开发笔记 > 编程语言 > 正文

Tensorflow TFGAN GANEstimator出口模型

如何解决《TensorflowTFGANGANEstimator出口模型》经验,为你挑选了1个好方法。



1> elgehelge..:

2018-5-09:目前GANEstimator没有创建所说的export_output词典; 它可以通过tensorflow/contrib/gan/python/estimator/python/head_impl.py162行后查看来验证.

您可以通过此GitHub Pull Request跟踪此问题的状态.

model_fn需要返回一个EstimatorSpecexport_outputs字典.有点像:

if mode == Modes.PREDICT:
    predictions = {
        'classes': tf.gather(label_values, predicted_indices),
        'scores': tf.reduce_max(probabilities, axis=1)
    }
    export_outputs = {
        'prediction': tf.estimator.export.PredictOutput(predictions)
    }
    return tf.estimator.EstimatorSpec(
        mode, predictions=predictions, export_outputs=export_outputs)

推荐阅读
mobiledu2402851203
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有