-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add sio eps to control detector versioning mode (#46)
also adds an sio ep that returns the full 'about' information BREAKING CHANGE: Responses of detectors SIO endpoints are now always dicts (recommended by AI for interface consisstency) --------- Co-authored-by: Niklas Neugebauer <[email protected]>
- Loading branch information
1 parent
f28d540
commit dbda78d
Showing
33 changed files
with
280 additions
and
213 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 2 additions & 4 deletions
6
demo_segmentation_tool/app_code/tests/test_demo_annotation_tool.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,19 @@ | ||
from .annotations import AnnotationData, AnnotationEventType, SegmentationAnnotation, ToolOutput, UserInput | ||
from .annotations import AnnotationData, SegmentationAnnotation, ToolOutput, UserInput | ||
from .detections import (BoxDetection, ClassificationDetection, Detections, Observation, Point, PointDetection, | ||
SegmentationDetection, Shape) | ||
from .general import (AnnotationNodeStatus, Category, CategoryType, Context, DetectionStatus, ErrorConfiguration, | ||
ModelInformation, NodeState, NodeStatus) | ||
from .general import (AboutResponse, AnnotationNodeStatus, Category, Context, DetectionStatus, ErrorConfiguration, | ||
ModelInformation, ModelVersionResponse, NodeState, NodeStatus) | ||
from .image_metadata import ImageMetadata | ||
from .socket_response import SocketResponse | ||
from .training import (Errors, PretrainedModel, TrainerState, Training, TrainingError, TrainingOut, TrainingStateData, | ||
TrainingStatus) | ||
from .training import Errors, PretrainedModel, Training, TrainingError, TrainingOut, TrainingStateData, TrainingStatus | ||
|
||
__all__ = [ | ||
'AnnotationData', 'AnnotationEventType', 'SegmentationAnnotation', 'ToolOutput', 'UserInput', | ||
'AboutResponse', 'AnnotationData', 'SegmentationAnnotation', 'ToolOutput', 'UserInput', | ||
'BoxDetection', 'ClassificationDetection', 'ImageMetadata', 'Observation', 'Point', 'PointDetection', | ||
'SegmentationDetection', 'Shape', 'Detections', | ||
'AnnotationNodeStatus', 'Category', 'CategoryType', 'Context', 'DetectionStatus', 'ErrorConfiguration', | ||
'ModelInformation', 'NodeState', 'NodeStatus', | ||
'AnnotationNodeStatus', 'Category', 'Context', 'DetectionStatus', 'ErrorConfiguration', | ||
'ModelInformation', 'NodeState', 'NodeStatus', 'ModelVersionResponse', | ||
'SocketResponse', | ||
'Errors', 'PretrainedModel', 'TrainerState', 'Training', | ||
'Errors', 'PretrainedModel', 'Training', | ||
'TrainingError', 'TrainingOut', 'TrainingStateData', 'TrainingStatus', | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.