Database for AI powered by a storage format optimized for deep-learning applications.
75
Evaluation — 75%
↑ 1.59xAgent success when using this tile
A Python module that manages versioned datasets with commit history tracking, rollback capabilities, and history visualization.
@generates
def create_versioned_dataset(path: str) -> object:
"""
Creates a new versioned dataset at the specified path.
Args:
path: Storage path for the dataset
Returns:
Dataset object with version control capabilities
"""
pass
def commit_changes(dataset: object, message: str) -> None:
"""
Commits current changes to the dataset with a descriptive message.
Args:
dataset: The dataset to commit
message: Commit message describing the changes
"""
pass
def get_history(dataset: object) -> list:
"""
Retrieves the commit history for the dataset.
Args:
dataset: The dataset to get history from
Returns:
List of commit records with metadata
"""
pass
def rollback_to_version(dataset: object, version_index: int) -> None:
"""
Reverts the dataset to a previous version.
Args:
dataset: The dataset to rollback
version_index: Index of the version to rollback to (0-based from oldest)
"""
passProvides dataset management with built-in version control capabilities.
Install with Tessl CLI
npx tessl i tessl/pypi-deeplakedocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10