1 Star 0 Fork 0

xzh/laser_detect_cpp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
gen_wts.py 711 Bytes
一键复制 编辑 原始数据 按行查看 历史
xzh 提交于 2021-03-18 10:48 . fisrt commit
import struct
import sys
from models import *
from utils.utils import *
model = Darknet('cfg/yolov3-tiny.cfg', (608, 608))
weights = sys.argv[1]
device = torch_utils.select_device('0')
if weights.endswith('.pt'): # pytorch format
model.load_state_dict(torch.load(weights, map_location=device)['model'])
else: # darknet format
load_darknet_weights(model, weights)
model = model.eval()
f = open('yolov3-tiny.wts', 'w')
f.write('{}\n'.format(len(model.state_dict().keys())))
for k, v in model.state_dict().items():
vr = v.reshape(-1).cpu().numpy()
f.write('{} {} '.format(k, len(vr)))
for vv in vr:
f.write(' ')
f.write(struct.pack('>f',float(vv)).hex())
f.write('\n')
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/meizeidexzh/laser_detect_cpp.git
git@gitee.com:meizeidexzh/laser_detect_cpp.git
meizeidexzh
laser_detect_cpp
laser_detect_cpp
master

搜索帮助