Closed nocotan closed 3 years ago
Implement the __init__ function as follows:
__init__
def __init__(self, beta=1.0, alpha=0.0, cardinality="one", bias="flat"): """ docstring """ assert (alpha >= 0) & (alpha <= 1) assert beta > 0 assert cardinality in ["one", "reciprocal", "udf_gamma"] assert bias in ["flat", "front", "middle", "back"] self.beta = beta self.alpha = alpha self.cardinality = cardinality self.bias = bias
Make it possible to initialize the TimeSeriesPrecision class.
TimeSeriesPrecision
TimeSeriesPrecision.__init__()
yyyy / mm / dd
If the parent issue exists, post a link here.
If there are any reference links, they are described here.
Other comments.
Summary
Implement the
__init__
function as follows:Goal
Make it possible to initialize the
TimeSeriesPrecision
class.Todo
TimeSeriesPrecision.__init__()
Deadline
yyyy / mm / dd
Parent issue
If the parent issue exists, post a link here.
References
If there are any reference links, they are described here.
Notes
Other comments.