run_config = tf.contrib.tpu.RunConfig(
cluster=tpu_cluster_resolver,
master=FLAGS.master,
model_dir=FLAGS.output_dir,
save_checkpoints_steps=FLAGS.save_checkpoints_steps,
tpu_config=tf.contrib.tpu.TPUConfig(
iterations_per_loop=FLAGS.iterations_per_loop,
num_shards=FLAGS.num_tpu_cores,
per_host_input_for_training=is_per_host))
2条答案
按热度按时间ngynwnxp1#
我所能得到的最近的是here,但我无法确定
tensorflow_estimator
在哪里。f87krz0w2#
我使用了tensorflow==1.15.5,运行得非常完美!