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.

12 lines
279 B

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