Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion docs/apis/schema/other.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,12 @@ Following classes are sub items composed of each schema tables.

::: t4_devkit.schema.tables
options:
members: ["FileFormat", "SensorModality", "VisibilityLevel", "RLEMask", "ShiftState", "IndicatorState", "Indicators", "AdditionalInfo"]
members: ["FileFormat", "SensorModality", "VisibilityLevel", "RLEMask", "ShiftState", "IndicatorState", "Indicators", "AdditionalInfo", "AutolabelModel", "AutolabelMixin"]
show_root_toc_entry: false
merge_init_into_class: false
show_signature_annotations: false
show_docstring_attributes: true
show_root_heading: false

## `Sensor`

Expand All @@ -25,6 +26,7 @@ Following classes are sub items composed of each schema tables.
merge_init_into_class: false
show_signature_annotations: false
show_docstring_attributes: true
show_root_heading: false

## `ObjectAnn`/`SurfaceAnn`

Expand All @@ -37,6 +39,7 @@ Following classes are sub items composed of each schema tables.
merge_init_into_class: false
show_signature_annotations: false
show_docstring_attributes: true
show_root_heading: false

## `Visibility`

Expand All @@ -49,6 +52,7 @@ Following classes are sub items composed of each schema tables.
merge_init_into_class: false
show_signature_annotations: false
show_docstring_attributes: true
show_root_heading: false

## `VehicleState`

Expand All @@ -61,5 +65,6 @@ Following classes are sub items composed of each schema tables.
merge_init_into_class: false
show_signature_annotations: false
show_docstring_attributes: true
show_root_heading: false

<!-- prettier-ignore-end -->
2 changes: 1 addition & 1 deletion docs/apis/schema/table.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

::: t4_devkit.schema.tables
options:
filters: ["!SchemaBase", "!FileFormat", "!SensorModality", "!VisibilityLevel", "!RLEMask", "!ShiftState", "!IndicatorState", "!Indicators", "!AdditionalInfo"]
filters: ["!SchemaBase", "!FileFormat", "!SensorModality", "!VisibilityLevel", "!RLEMask", "!ShiftState", "!IndicatorState", "!Indicators", "!AdditionalInfo", "!AutolabelModel", "!AutolabelMixin"]
show_root_toc_entry: false
merge_init_into_class: false
show_signature_annotations: false
Expand Down
24 changes: 15 additions & 9 deletions mkdocs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,21 +64,27 @@ plugins:
- https://numpy.org/doc/stable/objects.inv
- https://ipython.readthedocs.io/en/stable/objects.inv
options:
docstring_style: google
docstring_section_style: list # list spacy table
heading_level: 3
# general
filters: ["!^_"]
show_bases: true
show_source: false
inherited_members: false
members_order: source # The order of class members
parameter_headings: true
show_root_heading: false
show_bases: false
show_source: true
# headings
heading_level: 2
parameter_headings: false
show_root_heading: true
show_symbol_type_heading: true
show_symbol_type_toc: true
# members
inherited_members: false
members_order: source # The order of class members
# docstrings
docstring_style: google
docstring_section_style: list # list spacy table
merge_init_into_class: true
# signatures
separate_signature: true
show_signature_annotations: true
show_overload: true

markdown_extensions:
- pymdownx.highlight:
Expand Down
Loading