mirror of
https://github.com/THUDM/CogVideo.git
synced 2025-04-06 03:57:56 +08:00
Add Pydantic models to handle: - CLI arguments and configuration (Args) - Model components and pipeline (Components) - Training state and parameters (State)
5 lines
125 B
Python
5 lines
125 B
Python
from .args import Args
|
|
from .state import State
|
|
from .components import Components
|
|
|
|
__all__ = ["Args", "State", "Components"] |