mirror of
https://github.com/microsoft/qlib.git
synced 2026-07-10 06:20:57 +08:00
Format with black
This commit is contained in:
@@ -6,7 +6,7 @@ from ..data.dataset import Dataset
|
||||
|
||||
|
||||
class BaseModel(Serializable, metaclass=abc.ABCMeta):
|
||||
'''Modeling things'''
|
||||
"""Modeling things"""
|
||||
|
||||
@abc.abstractmethod
|
||||
def predict(self, *args, **kwargs) -> object:
|
||||
@@ -19,7 +19,7 @@ class BaseModel(Serializable, metaclass=abc.ABCMeta):
|
||||
|
||||
|
||||
class Model(BaseModel):
|
||||
'''Learnable Models'''
|
||||
"""Learnable Models"""
|
||||
|
||||
def fit(self, dataset: Dataset):
|
||||
"""
|
||||
|
||||
Reference in New Issue
Block a user