Reputation: 4864
Google's TPUs require you to port over your tensorflow Estimators to TPUEstimators, but what I can't seem to figure out is what kind of changes are necessary for the "canned" estimators (like the DNNClassifier
) - it seems that only input function really needs changing to use the tf.data.Dataset
but I could be wrong. Any help appreciated.
Upvotes: 2
Views: 87
Reputation: 127
TPU canned estimators are being worked on. But, to answer your question, I believe you just have to...
Things that need changing...
Might be a few other things.
Upvotes: 3