This commit is contained in:
2026-03-23 19:10:55 -03:00
parent 3df9ed5ada
commit 95246c5452
23 changed files with 1361 additions and 107 deletions

5
gpu/models/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
from . import registry
from .yolo import detect
from .ocr import ocr
__all__ = ["registry", "detect", "ocr"]