Files
TinyTorch/tinytorch/datasets/__init__.py
Vijay Janapa Reddi c16c81484c Adds initial TinyTorch CLI and core structure
Introduces the foundational CLI structure and core components for the TinyTorch project.

This initial commit establishes the command-line interface (CLI) using `argparse` for training, evaluation, benchmarking, and system information. It also lays out the basic directory structure and essential modules, including tensor operations, autograd, neural network layers, optimizers, data loading, and MLOps components.
2025-07-09 00:23:19 -04:00

8 lines
180 B
Python
Generated

"""
Dataset implementations for TinyTorch.
Common datasets used in machine learning education and research.
"""
# Dataset implementations will be added in Chapter 6
__all__ = []