Skip to content

Commit f8b0662

Browse files
Merge pull request #2798 from activeloopai/minor_docs_fix
Removed coco references from the "ingest_dataframe" docs
2 parents 30d67bf + 9d09c43 commit f8b0662

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

deeplake/api/dataset.py

-15
Original file line numberDiff line numberDiff line change
@@ -1979,21 +1979,6 @@ def ingest_dataframe(
19791979
19801980
Examples:
19811981
1982-
1983-
>>> # Ingest local data in COCO format to a Deep Lake dataset stored in Deep Lake storage.
1984-
>>> ds = deeplake.ingest_coco(
1985-
>>> "<path/to/images/directory>",
1986-
>>> ["path/to/annotation/file1.json", "path/to/annotation/file2.json"],
1987-
>>> dest="hub://org_id/dataset",
1988-
>>> key_to_tensor_mapping={"category_id": "labels", "bbox": "boxes"},
1989-
>>> file_to_group_mapping={"file1.json": "group1", "file2.json": "group2"},
1990-
>>> ignore_keys=["area", "image_id", "id"],
1991-
>>> num_workers=4,
1992-
>>> )
1993-
>>> # Ingest data from your cloud into another Deep Lake dataset in your cloud, and connect that dataset to the Deep Lake backend.
1994-
1995-
1996-
19971982
>>> # Ingest data from a DataFrame into a Deep Lake dataset stored in Deep Lake storage.
19981983
>>> ds = deeplake.ingest_dataframe(
19991984
>>> df,

0 commit comments

Comments
 (0)