Database for AI powered by a storage format optimized for deep-learning applications.
75
Evaluation — 75%
↑ 1.59xAgent success when using this tile
Build a dataset management system for an e-commerce product catalog that supports dynamic schema updates.
Create a system that:
@generates
def initialize_catalog(path: str) -> None:
"""
Initialize a new product catalog dataset with base columns.
Args:
path: Path where the dataset should be created
"""
pass
def add_price_column(path: str) -> None:
"""
Add a price column with float32 type to an existing catalog.
Args:
path: Path to the existing dataset
"""
pass
def rename_description_column(path: str) -> None:
"""
Rename the 'description' column to 'product_details'.
Args:
path: Path to the existing dataset
"""
pass
def remove_name_column(path: str) -> None:
"""
Remove the name column from the dataset.
Args:
path: Path to the existing dataset
"""
passProvides database capabilities for AI with storage format optimized for deep-learning applications.
@satisfied-by
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