-
Notifications
You must be signed in to change notification settings - Fork 13
/
gen_wts.py
38 lines (33 loc) · 895 Bytes
/
gen_wts.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import argparse
import struct
import torch
def main(args):
# Load model
state_dict = torch.load(args.weight)
with open(args.save_path, "w") as f:
f.write("{}\n".format(len(state_dict.keys())))
for k, v in 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")
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument(
"-w",
"--weight",
type=str,
required=True,
help="RepVGG model weight path",
)
parser.add_argument(
"-s",
"--save_path",
type=str,
required=True,
help="generated wts path",
)
args = parser.parse_args()
main(args)