converter system

This commit is contained in:
Siwat Sirichai 2025-11-09 19:54:35 +07:00
parent d3dbf9a580
commit 748fb71980
9 changed files with 1012 additions and 14 deletions

View file

@ -0,0 +1,8 @@
"""
Model storage module for managing TensorRT and PyTorch model files.
"""
from .interface import IModelStorage
from .file_storage import FileModelStorage
__all__ = ['IModelStorage', 'FileModelStorage']