tessl install tessl/pypi-deeplake@4.3.0Database for AI powered by a storage format optimized for deep-learning applications.
Agent Success
Agent success rate when using this tile
75%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.6x
Baseline
Agent success rate without this tile
47%
A utility for managing ML datasets with support for local and cloud storage backends.
Creates new datasets at specified storage locations.
Opens existing datasets for read or write access.
Checks whether a dataset exists at a given location.
Permanently removes datasets from storage.
@generates
class DatasetManager:
"""
Manages dataset lifecycle operations.
"""
def create_dataset(self, path: str) -> object:
"""
Create a new dataset at the specified path.
Parameters:
- path: Location where dataset should be created
Returns:
Dataset object for data operations
"""
pass
def open_dataset(self, path: str) -> object:
"""
Open an existing dataset for access.
Parameters:
- path: Location of the dataset to open
Returns:
Dataset object for operations
"""
pass
def exists(self, path: str) -> bool:
"""
Check if a dataset exists at the specified path.
Parameters:
- path: Location to check
Returns:
True if dataset exists, False otherwise
"""
pass
def delete_dataset(self, path: str) -> None:
"""
Permanently delete a dataset.
Parameters:
- path: Location of dataset to delete
"""
passProvides database capabilities for AI with optimized storage for deep-learning applications.
@satisfied-by