gpt4 book ai didi

tensorflow - 如何使用 python 编写此 pbtxt?

转载 作者:行者123 更新时间:2023-12-05 01:39:04 27 4
gpt4 key购买 nike

如何使用 python 生成 label_map.pbtxt?我需要通过发送对象名称自动生成 label_map.pbtxt 文件。

item {
id: 1
name: 'object name'
}

我尝试使用 python 功能创建它,但是当我开始训练模型时出现此错误:

TypeError: a bytes-like object is required, not 'str'!

最佳答案

def label_map_v1(objname):
with open('/TEST-DS-TO-RECORD/annotations/label_map.pbtxt', 'a') as the_file:
the_file.write('item\n')
the_file.write('{\n')
the_file.write('id :{}'.format(int(1)))
the_file.write('\n')
the_file.write("name :'{0}'".format(str(objname)))
the_file.write('\n')
the_file.write('}\n')

这可以生成我需要的文件。

关于tensorflow - 如何使用 python 编写此 pbtxt?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59066851/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com