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.
 
 
 
 
 

11 lines
279 B

from models import Model
import utils
import pandas as pd
class CustomModel(Model):
def do_fit(self, dataframe: pd.DataFrame, labeled_segments: list, deleted_segments: list) -> None:
pass
def do_detect(self, dataframe: pd.DataFrame) -> list:
return []