From 9d09c43b6af49df846a110e8eed17541a0058a7e Mon Sep 17 00:00:00 2001 From: Joe Ismailyan <160544031+joe-activeloop@users.noreply.github.com> Date: Thu, 14 Mar 2024 17:29:38 -0700 Subject: [PATCH] - removed coco references from the "ingest_dataframe" docs --- deeplake/api/dataset.py | 15 --------------- 1 file changed, 15 deletions(-) diff --git a/deeplake/api/dataset.py b/deeplake/api/dataset.py index d24ec8e5ab..ca835e1ba4 100644 --- a/deeplake/api/dataset.py +++ b/deeplake/api/dataset.py @@ -1979,21 +1979,6 @@ def ingest_dataframe( Examples: - - >>> # Ingest local data in COCO format to a Deep Lake dataset stored in Deep Lake storage. - >>> ds = deeplake.ingest_coco( - >>> "", - >>> ["path/to/annotation/file1.json", "path/to/annotation/file2.json"], - >>> dest="hub://org_id/dataset", - >>> key_to_tensor_mapping={"category_id": "labels", "bbox": "boxes"}, - >>> file_to_group_mapping={"file1.json": "group1", "file2.json": "group2"}, - >>> ignore_keys=["area", "image_id", "id"], - >>> num_workers=4, - >>> ) - >>> # Ingest data from your cloud into another Deep Lake dataset in your cloud, and connect that dataset to the Deep Lake backend. - - - >>> # Ingest data from a DataFrame into a Deep Lake dataset stored in Deep Lake storage. >>> ds = deeplake.ingest_dataframe( >>> df,