当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python tf.compat.v1.profiler.ProfileOptionBuilder用法及代码示例


分析 API 的选项生成器。

用法

tf.compat.v1.profiler.ProfileOptionBuilder(
    options=None
)

参数

  • options 可选的初始选项 dict 开始。

有关选项的教程,请参阅https://github.com/tensorflow/tensorflow/tree/master/tensorflow/core/profiler/g3doc/options.md

# Users can use pre-built options:
opts = (
    tf.profiler.ProfileOptionBuilder.trainable_variables_parameter())

# Or, build your own options:
opts = (tf.compat.v1.profiler.ProfileOptionBuilder()
    .with_max_depth(10)
    .with_min_micros(1000)
    .select(['accelerator_micros'])
    .with_stdout_output()
    .build()

# Or customize the pre-built options:
opts = (tf.compat.v1.profiler.ProfileOptionBuilder(
    tf.profiler.ProfileOptionBuilder.time_and_memory())
    .with_displaying_options(show_name_regexes=['.*rnn.*'])
    .build())

# Finally, profiling with the options:
_ = tf.compat.v1.profiler.profile(tf.compat.v1.get_default_graph(),
                        run_meta=run_meta,
                        cmd='scope',
                        options=opts)

相关用法


注:本文由纯净天空筛选整理自tensorflow.org大神的英文原创作品 tf.compat.v1.profiler.ProfileOptionBuilder。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。