We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b84d04 commit 5b18c2cCopy full SHA for 5b18c2c
luxonis_ml/nn_archive/config_building_blocks/base_models/head.py
@@ -16,6 +16,8 @@
16
class Head(BaseModel, ABC):
17
"""Represents head of a model.
18
19
+ @type name: str | None
20
+ @ivar name: Optional name of the head.
21
@type parser: str
22
@ivar parser: Name of the parser responsible for processing the models output.
23
@type outputs: List[str] | None
@@ -27,6 +29,7 @@ class Head(BaseModel, ABC):
27
29
@ivar metadata: Metadata of the parser.
28
30
"""
31
32
+ name: Optional[str] = Field(None, description="Optional name of the head.")
33
parser: str = Field(
34
description="Name of the parser responsible for processing the models output."
35
)
0 commit comments