Spaces:
Runtime error
Runtime error
| """Training module interface.""" | |
| from __future__ import annotations | |
| from typing import Protocol | |
| class TrainingInterface(Protocol): | |
| async def train(self, dataset_path: str) -> str: | |
| ... | |