Add a simple setup scripts (just for development)

This commit is contained in:
kalineid 2021-07-11 06:22:08 -04:00
Родитель fb110de0ab
Коммит e5db7ef3c3
2 изменённых файлов: 16 добавлений и 0 удалений

Просмотреть файл

@ -6,6 +6,7 @@ import json
from .onnx_converter import OnnxConverter
from .frozenpb_converter import FrozenPbConverter
from .torch_converter import TorchConverter
from .torch_converter.converter import NNIIRConverter
def model_to_graph(model, model_type, input_shape=(1, 3, 224, 224)):
@ -25,6 +26,9 @@ def model_to_graph(model, model_type, input_shape=(1, 3, 224, 224)):
args = args.to("cuda")
converter = TorchConverter(model, args)
result = converter.convert()
elif model_type == 'nni':
converter = NNIIRConverter(model)
result = converter.convert()
else:
raise ValueError(f"Unsupported model type: {model_type}")

12
setup.py Normal file
Просмотреть файл

@ -0,0 +1,12 @@
from setuptools import setup, find_packages
setup(
name='nn_meter',
version='1.0',
description='',
author='',
author_email='',
url='',
packages=find_packages(),
)