forked from TRT2022/ControlNet_TensorRT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path05_clip_16.py
29 lines (24 loc) · 1.06 KB
/
05_clip_16.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
from collections import OrderedDict
import onnx
from cuda import cudart
from polygraphy.backend.onnx import modify_outputs, onnx_from_path, ModifyOutputs
import numpy as np
def clip_16(onnx_model,path):
# change onnx -inf to -1e4
for node in onnx_model.graph.node:
# if node.name == "/text_model/ConstantOfShape_1":
if node.op_type == "ConstantOfShape":
# print(node)
attr = node.attribute[0]
# print(attr)
if attr.name == "value" and attr.t.data_type == onnx.TensorProto.FLOAT:
np_array = np.frombuffer(attr.t.raw_data, dtype=np.float32).copy()
print("raw array", np_array)
np_array[np_array == -np.inf] = -1000000 # 将所有负无穷的值改为-1000000
attr.t.raw_data = np_array.tobytes()
print("new array", np_array)
# print(attr)
onnx.save_model(onnx_model,path)
if __name__ == "__main__":
onnx_model = onnx_from_path("./models/clip_encoder_0.onnx")
clip_16(onnx_model,"./models/clip_encoder_1.onnx")