File size: 200 Bytes
09f1b19
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""Training module interface."""

from __future__ import annotations

from typing import Protocol


class TrainingInterface(Protocol):
    async def train(self, dataset_path: str) -> str:
        ...