tlc.core.objects.tables.from_url.table_from_yolo_ndjson

A table populated from a YOLO NDJSON file at a given URL.

Module Contents

Classes

Class

Description

TableFromYoloNdjson

A table populated from a NDJSON file at a given URL.

API

class TableFromYoloNdjson(
*,
url: Url | None = None,
created: str | None = None,
description: str | None = None,
row_cache_url: Url | None = None,
row_cache_populated: bool | None = None,
override_table_rows_schema: Any = None,
init_parameters: Any = None,
input_tables: list[Url] | None = None,
input_url: Url | str | None = None,
image_folder_url: Url | str | None = None,
split: str | None = None,
)

Bases: tlc.core.objects.tables.from_url.table_from_ndjson.TableFromNdjson

A table populated from a NDJSON file at a given URL.

Initialize a TableFromNdjson object.

Parameters:
  • url – The URL of the table.

  • created – The creation date of the table.

  • description – The description of the table.

  • row_cache_url – The URL of the row cache.

  • row_cache_populated – Whether the row cache is populated.

  • override_table_rows_schema – The table rows schema to override.

  • init_parameters – The parameters used to initialize the table.

  • input_tables – A list of Table Urls that should be used as input tables.

  • input_url – The URL of the input data.

  • image_folder_url – The folder containing the images, used to handle relative paths.

  • split – The split of the input data to get. Rows with a different ‘split’ are ignored.