English 中文(简体)
CEP 发动机诉专家系统
原标题:CEP Engine vs Expert System

复杂事件处理发动机与专家系统发动机之间的主要区别是什么?

我何时应当使用一种或另一种方法?

最佳回答

如果时间对你的决定模式有重大影响,CEP发动机将提供帮助。 例如:如果Y和Z事件在同一时间窗口发生,决定发射X。 另一个例子是,在时间窗口上合并事件的能力。

时间的另一个影响是相对制约: 因此,你希望在短时间内(例如100米或更少)处理事件。 在这种局势中,临时选举委员会非常合适。

但是,这两种技术是相辅相成的。 具体来说,一些CEP工具有推论规则。 或者,你可以有一个初步处理阶段,有CEP发动机(过滤、汇总、事件组成),然后请一个专家系统来决定与您的合并复杂事件做些什么。

这里有一条关于CEP的某些使用案例的条款,可帮助:

问题回答

They are different. @MDE wrote about SEP, but expert system gives decisions. It do not process events, its task to give answer based on (X, Y, Z, ....) parameters. If you want to trigger events then it is CEP, but if you need analyzes of them, so it s expert system. As @Bob wrote, thay can be used together: CEP to capture event Expert System to "think of it" And then, SEP to fire it back, for example.





相关问题
Expert System (?) algorithm

I have an algorithmic problem which can be reduced to this task: Suppose we have a list of n diseases and m symptoms. For each disease d and symptom s, we have one of three options: the symptom is ...

Dereferencing a Slot in a Matched Fact in Clips

How do you dereference a slot in a fact matched in the LHS of a rule? If a variable matches a fact, I can t find how to create further conditions that match slots within that fact. For example, in ...

Clips matching expression is not working

hello in clips i have this template: (deftemplate cell(slot x)(slot y)(slot alive)) and this fact : (start 1 1) then i have this claus in the LHS : ?start<-(start ?x ?y) and i want to get ...

How to read line in CLIPS?

I need to read a string in CLIPS so i m usign (readline) but it doesn t seem to work. It doesn t let me enter anything and it just returns "". Any ideea what s the issue? CLIPS> (readline) "" ...

Pruning Deductions in Expert Systems

In a rule system, or any reasoning system that deduces facts via forward-chaining inference rules, how would you prune "unnecessary" branches? I m not sure what the formal terminology is, but I m just ...

what languages are used in AI research today?

I am currently dabbling in expert systems, emacs lisp, and reading up about artificial intelligence. Traditionally, artificial intelligence is associated with LISP and expert systems with CLIPS. ...

Neural Network Expert System

Does anyone know how to emulate an Expert Systems using Neural Networks? An example of this is the 20q.net website. I m more curious to how the network would be designed; ie how many inputs, what the ...

热门标签