You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
438 B
15 lines
438 B
from models import AnalyticUnitCache |
|
from abc import ABC, abstractmethod |
|
from pandas import DataFrame |
|
from typing import Optional |
|
|
|
|
|
class Detector(ABC): |
|
|
|
@abstractmethod |
|
async def train(self, dataframe: DataFrame, segments: list, cache: Optional[AnalyticUnitCache]) -> AnalyticUnitCache: |
|
pass |
|
|
|
@abstractmethod |
|
async def predict(self, dataframe: DataFrame, cache: Optional[AnalyticUnitCache]) -> dict: |
|
pass
|
|
|