from tensorflow.python import pywrap_tensorflow
import os

checkpoint_path=os.path.join('./model.ckpt-100')
reader=pywrap_tensorflow.NewCheckpointReader(checkpoint_path)
var_to_shape_map=reader.get_variable_to_shape_map()
for key in var_to_shape_map:
    print('tensor_name: ',key)

相关文章:

  • 2021-11-12
  • 2022-12-23
  • 2021-04-05
  • 2022-02-02
  • 2022-12-23
  • 2022-12-23
  • 2021-10-17
  • 2022-12-23
猜你喜欢
  • 2021-08-27
  • 2022-01-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-10
相关资源
相似解决方案