7 lines
128 B
Python
7 lines
128 B
Python
import onnx
|
|
|
|
if onnx.__version__ == '1.7.0':
|
|
from .onnx_optimizer_1_7 import *
|
|
else:
|
|
from .onnx_optimizer_1_13 import *
|