CogVideo/finetune/schemas/__init__.py
OleehyO 91d79fd9a4 feat: add schemas module for configuration and state management
Add Pydantic models to handle:
- CLI arguments and configuration (Args)
- Model components and pipeline (Components)
- Training state and parameters (State)
2025-01-01 15:10:54 +00:00

5 lines
125 B
Python

from .args import Args
from .state import State
from .components import Components
__all__ = ["Args", "State", "Components"]