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.

13 lines
304 B

6 years ago
from models import Model
import utils
import pandas as pd
from typing import Optional
6 years ago
class CustomModel(Model):
def fit(self, dataframe: pd.DataFrame, segments: list, cache: Optional[dict]) -> dict:
6 years ago
pass
def do_predict(self, dataframe: pd.DataFrame) -> list:
6 years ago
return []