Fix Docs pretty __init__.py URLs (#14550)
Signed-off-by: Glenn Jocher <glenn.jocher@ultralytics.com> Co-authored-by: UltralyticsAssistant <web@ultralytics.com>
This commit is contained in:
parent
0d059bec0c
commit
b3b3a15086
16 changed files with 49 additions and 22 deletions
|
|
@ -21,6 +21,8 @@ from .utils import get_sim_index_schema, get_table_schema, plot_query_result, pr
|
|||
|
||||
|
||||
class ExplorerDataset(YOLODataset):
|
||||
"""Extends YOLODataset for advanced data exploration and manipulation in model training workflows."""
|
||||
|
||||
def __init__(self, *args, data: dict = None, **kwargs) -> None:
|
||||
"""Initializes the ExplorerDataset with the provided data arguments, extending the YOLODataset class."""
|
||||
super().__init__(*args, data=data, **kwargs)
|
||||
|
|
@ -54,6 +56,8 @@ class ExplorerDataset(YOLODataset):
|
|||
|
||||
|
||||
class Explorer:
|
||||
"""Utility class for image embedding, table creation, and similarity querying using LanceDB and YOLO models."""
|
||||
|
||||
def __init__(
|
||||
self,
|
||||
data: Union[str, Path] = "coco128.yaml",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue