What's the difference between a Tensorflow Keras Model and Estimator?

后端 未结 2 1491
难免孤独
难免孤独 2020-12-23 09:24

Both Tensorflow Keras models and Tensorflow Estimators are able to train neural network models and use them to predict new data. They are both high-level APIs that sits on t

2条回答
  •  醉话见心
    2020-12-23 09:50

    In my understanding, estimator is for training data on large scale and serving on production purpose, because cloud ML engine can only accept estimator.

    The description below from one of tensorflow doc mentioned this:

    " The Estimators API is used for training models for distributed environments. This targets industry use cases such as distributed training on large datasets that can export a model for production. "

提交回复
热议问题