Spaces:
Runtime error
Runtime error
File size: 384 Bytes
99c6a62 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
# aduc_framework/tools/__init__.py
# Expõe os singletons e classes principais do sub-pacote de ferramentas.
from .hardware_manager import hardware_manager
from .video_encode_tool import video_encode_tool_singleton
from . import optimization
from . import tensor_utils
__all__ = [
"hardware_manager",
"video_encode_tool_singleton",
"optimization",
"tensor_utils",
] |