add_model_resnet18 #31

Merged
brian merged 47 commits from add_model_resnet18 into main 2024-04-03 21:04:23 +02:00
3 changed files with 9 additions and 4 deletions
Showing only changes of commit 8965eb7192 - Show all commits
+4
View File
@@ -0,0 +1,4 @@
from __future__ import annotations
from .exceptions import NoDocumentFoundException
from .visual_communication import VisualCommunication
+5
View File
@@ -0,0 +1,5 @@
from __future__ import annotations
class NoDocumentFoundException(Exception):
pass
@@ -14,10 +14,6 @@ from pydantic import field_validator
from core.dto import ModelData
class NoDocumentFoundException(Exception):
pass
class VisualCommunication(BaseModel):
name: str
image: Image.Image