Skip to content

Commit 6be1d1f

Browse files
authored
Create onnxtk package (#225)
* onnxtk package * onnxtk package
1 parent ba70ad6 commit 6be1d1f

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

onnxutils/onnxtk/__init__.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# -------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for
4+
# license information.
5+
# --------------------------------------------------------------------------
6+
7+
"""
8+
The entry point to onnxtk.
9+
This framework performs optimization for onnx model.
10+
"""
11+
__version__ = "0.0.1"
12+
__author__ = "Microsoft"
13+
__producer__ = "OnnxMLTools"
14+
__producer_version__ = __version__
15+
__domain__ = "onnxtk"
16+
__model_version__ = 0
17+
18+
from .optimizer import optimize_onnx

0 commit comments

Comments
 (0)