Reference
Bases: streamad.util.dataset.DS
streamad.util.dataset.DS
Load univariate dataset.
Load multivariate dataset.
Bases: object
object
Load static dataset and generate observation once a time.
Initialize a StreamGenerator.
X (np.ndarray) – Origin static dataset.
TypeError – Unexpected input data type.
Iterate item once a time from the dataset.
Generator – One observation from the dataset.
Generator
Data statistics for the streaming data.
Statistic for stream data We support max, min, sum, mean, sum of squares, var, std and standard scaler for streaming data.
Get max stattistic.
Get mean stattistic.
Get min stattistic.
Get sum stattistic.
Get var stattistic.
Update a pd.Series to stream
X (np.ndarray) – An item from StreamGenerator
Bases: streamad.base.metrics.BaseMetrics
streamad.base.metrics.BaseMetrics
ROC_AUC score for evaluation.
Bases: