Victor Oliveira

Results 3 comments of Victor Oliveira

I can work on that. For my undergraduate dissertation, I will use M5 data for Walmart sales up to department level (item is too much and involves intermittent demand that...

I tried to use `DecayEstimator` with `MultiOutputClassifier` and when I fit the model following error shows up: > AttributeError: 'DecayEstimator' object has no attribute 'classes_' After investigation for a while,...

Not necessarily, I just used `is_classifier` function from `sklearn.base`, in this way: ```python def _is_classifier(self): return is_classifier(self.model) ``` (Actually, we could use is_classifier function directly rs) I can send the...