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.
18 lines
421 B
18 lines
421 B
from models import Model, AnalyticSegment |
|
import utils |
|
import pandas as pd |
|
from typing import List |
|
|
|
|
|
class CustomModel(Model): |
|
def do_fit( |
|
self, |
|
dataframe: pd.DataFrame, |
|
labeled_segments: List[AnalyticSegment], |
|
deleted_segments: List[AnalyticSegment], |
|
learning_info: dict |
|
) -> None: |
|
pass |
|
|
|
def do_detect(self, dataframe: pd.DataFrame) -> list: |
|
return []
|
|
|