Online clustering
yyin-dev opened this issue · 0 comments
yyin-dev commented
Currently, Clusterer
in forecaster/cluster.py
doesn't allow online clustering (the function _cluster_online
is defined but is never called). How should we use that function? Is it enough to just replace the last line in __init__
from
self.assignment_df = self._cluster_offline()
to
self.assignment_df = self._cluster_online()
?