bert
bert copied to clipboard
where is the source code of tf.contrib.tpu.RunConfig(),my tensorflow version is 1.11.0
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))
Closest I could get to was here, but I can't quite figure out where tensorflow_estimator is.
I used tensorflow==1.15.5, worked perfectly fine!