是否可以查询TensorFlow会话使用的当前配置?例如
config = tf.ConfigProto()
config.intra_op_parallelism_threads = 44
config.inter_op_parallelism_threads = 44
sess = tf.Session(config=config)
在TensorFlow(我正在使用的版本1.10)中,我似乎找不到一种方法来读取sess
变量中的配置值。
答案 0 :(得分:0)
您可以通过以下方式访问“私有”变量_config
:
sess._config
这是类型tensorflow.core.protobuf.config_pb2.ConfigProto
的类(简而言之,您可以访问intra_op_parallelism_threads
和inter_op_parallelism_threads
以及在tf.ConfigProto
定义中添加的任何其他属性)。