You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""Ingest images and annotations in COCO format to a Deep Lake Dataset. The source data can be stored locally or in the cloud.
@@ -1562,7 +1570,6 @@ def ingest_coco(
1562
1570
num_workers (int): The number of workers to use for ingestion. Set to ``0`` by default.
1563
1571
token (Optional[str]): The token to use for accessing the dataset and/or connecting it to Deep Lake.
1564
1572
connect_kwargs (Optional[Dict]): If specified, the dataset will be connected to Deep Lake, and connect_kwargs will be passed to :meth:`Dataset.connect <deeplake.core.dataset.Dataset.connect>`.
1565
-
indra (bool): Flag indicating whether indra api should be used to create the dataset. Defaults to false
1566
1573
**dataset_kwargs: Any arguments passed here will be forwarded to the dataset creator function. See :func:`deeplake.empty`.
1567
1574
1568
1575
Returns:
@@ -1605,7 +1612,6 @@ def ingest_coco(
1605
1612
creds=dest_creds,
1606
1613
verbose=False,
1607
1614
token=token,
1608
-
indra=indra,
1609
1615
**dataset_kwargs,
1610
1616
)
1611
1617
ifconnect_kwargsisnotNone:
@@ -1637,7 +1643,6 @@ def ingest_yolo(
1637
1643
num_workers: int=0,
1638
1644
token: Optional[str] =None,
1639
1645
connect_kwargs: Optional[Dict] =None,
1640
-
indra: bool=USE_INDRA,
1641
1646
**dataset_kwargs,
1642
1647
) ->Dataset:
1643
1648
"""Ingest images and annotations (bounding boxes or polygons) in YOLO format to a Deep Lake Dataset. The source data can be stored locally or in the cloud.
@@ -1686,7 +1691,6 @@ def ingest_yolo(
1686
1691
num_workers (int): The number of workers to use for ingestion. Set to ``0`` by default.
1687
1692
token (Optional[str]): The token to use for accessing the dataset and/or connecting it to Deep Lake.
1688
1693
connect_kwargs (Optional[Dict]): If specified, the dataset will be connected to Deep Lake, and connect_kwargs will be passed to :meth:`Dataset.connect <deeplake.core.dataset.Dataset.connect>`.
1689
-
indra (bool): Flag indicating whether indra api should be used to create the dataset. Defaults to false
1690
1694
**dataset_kwargs: Any arguments passed here will be forwarded to the dataset creator function. See :func:`deeplake.empty`.
0 commit comments