Skip to content

Commit

Permalink
Merge branch 'dev' of github.com:luxonis/luxonis-ml into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
kozlov721 committed Jul 11, 2024
2 parents 06345f1 + 3693214 commit dda0426
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,12 @@ class Head(BaseModel, ABC):
description="Name of the parser responsible for processing the models output."
)
metadata: Union[
HeadMetadata,
HeadObjectDetectionMetadata,
HeadClassificationMetadata,
HeadObjectDetectionSSDMetadata,
HeadSegmentationMetadata,
HeadYOLOMetadata,
HeadMetadata,
] = Field(description="Metadata of the parser.")
outputs: Optional[List[str]] = Field(
None,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -202,6 +202,7 @@ def validate_task_specific_fields(
defined_params = defined_params.difference(common_fields)

required_fields = {
"object_detection": [],
"instance_segmentation": [
"n_prototypes",
"is_softmax",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "luxonis-ml"
version = "0.2.2"
version = "0.2.3"
description = "MLOps tools for training models for Luxonis devices"
readme = "README.md"
requires-python = ">=3.8"
Expand Down

0 comments on commit dda0426

Please sign in to comment.