microsoft / anomalydetector

SR-CNN
MIT License
257 stars 70 forks source link

Not true streaming pipeline in SR implementation? #28

Open jlidw opened 4 years ago

jlidw commented 4 years ago

After reading the code, I found that SR outputs the result of one whole window every time (via batch_size), instead of only outputting the result of the latest point. It seems this is not the true steaming method? Actually, we should detect and output the result of the latest point at each timestep, right? I think the detection of non-overlapping windows is not really reasonable, especially when comparing the efficiency... Thanks.