DataStream<T> result = HTM.learn(stream, new Network())
.select(new InferenceSelectFunction<R, T>() {
@Override
public T select(Tuple2<R, NetworkInference> inference) throws Exception {
return inference.f1.getAnomalyScore();
}
});
The overrided select is never called. I verified that following the call hierarchy. This lead to no one output produced. Anyway, I verified the anomaly score, internally, is correctly computed.
Tried to resolve it, no great results reached. Please, fix it.
Template:
The overrided select is never called. I verified that following the call hierarchy. This lead to no one output produced. Anyway, I verified the anomaly score, internally, is correctly computed.
Tried to resolve it, no great results reached. Please, fix it.