Skip to content

Commit

Permalink
Merge pull request #2798 from activeloopai/minor_docs_fix
Browse files Browse the repository at this point in the history
Removed coco references from the "ingest_dataframe" docs
  • Loading branch information
joe-activeloop committed Mar 15, 2024
2 parents 30d67bf + 9d09c43 commit f8b0662
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions deeplake/api/dataset.py
Expand Up @@ -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/images/directory>",
>>> ["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,
Expand Down

0 comments on commit f8b0662

Please sign in to comment.