bert icon indicating copy to clipboard operation
bert copied to clipboard

where is the source code of tf.contrib.tpu.RunConfig(),my tensorflow version is 1.11.0

Open sweetboxwwy opened this issue 4 years ago • 2 comments

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))

sweetboxwwy avatar Dec 02 '21 07:12 sweetboxwwy

Closest I could get to was here, but I can't quite figure out where tensorflow_estimator is.

Jadiker avatar Mar 04 '22 19:03 Jadiker

I used tensorflow==1.15.5, worked perfectly fine!

gerwindekruijf avatar May 11 '22 12:05 gerwindekruijf