当前位置: 首页>>代码示例>>Python>>正文


Python v1.enable_eager_execution方法代码示例

本文整理汇总了Python中tensorflow.compat.v1.enable_eager_execution方法的典型用法代码示例。如果您正苦于以下问题:Python v1.enable_eager_execution方法的具体用法?Python v1.enable_eager_execution怎么用?Python v1.enable_eager_execution使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tensorflow.compat.v1的用法示例。


在下文中一共展示了v1.enable_eager_execution方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_main

# 需要导入模块: from tensorflow.compat import v1 [as 别名]
# 或者: from tensorflow.compat.v1 import enable_eager_execution [as 别名]
def test_main():
  tf.enable_eager_execution()
  tf.test.main() 
开发者ID:tensorflow,项目名称:tensor2tensor,代码行数:5,代码来源:test_utils.py

示例2: setUp

# 需要导入模块: from tensorflow.compat import v1 [as 别名]
# 或者: from tensorflow.compat.v1 import enable_eager_execution [as 别名]
def setUp(self):
    tf.enable_eager_execution()
    super(DPOptimizerEagerTest, self).setUp() 
开发者ID:tensorflow,项目名称:privacy,代码行数:5,代码来源:dp_optimizer_eager_test.py

示例3: main

# 需要导入模块: from tensorflow.compat import v1 [as 别名]
# 或者: from tensorflow.compat.v1 import enable_eager_execution [as 别名]
def main(_):
  flags.mark_flags_as_required(["task"])

  if FLAGS.module_import:
    import_modules(FLAGS.module_import)

  gin.parse_config_files_and_bindings(FLAGS.gin_file, FLAGS.gin_param)

  total_examples = 0
  tf.enable_eager_execution()
  task = t5.data.TaskRegistry.get(FLAGS.task)
  files = task.tfds_dataset.files(FLAGS.split)
  def _example_to_string(ex):
    key_to_string = {}
    for k in ("inputs", "targets"):
      if k in ex:
        v = ex[k].numpy()
        key_to_string[k] = (
            " ".join(str(i) for i in v) if FLAGS.tokenize
            else v.decode("utf-8"))
      else:
        v[k] = ""
    return FLAGS.format_string.format(**key_to_string)

  for shard_path in files:
    logging.info("Processing shard: %s", shard_path)
    ds = task.tfds_dataset.load_shard(shard_path)
    ds = task.preprocess_text(ds)
    if FLAGS.tokenize:
      ds = t5.data.encode_string_features(
          ds, task.output_features, keys=task.output_features,
          copy_plaintext=True)
      ds = task.preprocess_tokens(ds, sequence_length())

    for ex in ds:
      print(_example_to_string(ex))
      total_examples += 1
      if total_examples == FLAGS.max_examples:
        return 
开发者ID:google-research,项目名称:text-to-text-transfer-transformer,代码行数:41,代码来源:dump_task.py


注:本文中的tensorflow.compat.v1.enable_eager_execution方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。