Min, Max and Plus nodes in RxInfer #421
-
Hi, Cheers, |
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 1 reply
-
Hi Alvaro! Interesting question! I must honestly say that I am a bit unfamiliar with the topic you are describing, but will try to give it a shot anyway. Before diving deep into the topic, you are describing three types of nodes. As you mention the plus node can be created by chaining addition nodes as |
Beta Was this translation helpful? Give feedback.
-
Hi Bart, I think that's exactly what I want, thanks a lot. Cheers, |
Beta Was this translation helpful? Give feedback.
-
Good to hear! I would say that using a single |
Beta Was this translation helpful? Give feedback.
-
Something just came to mind. In the past we have seen that using a so-called |
Beta Was this translation helpful? Give feedback.
Hi Alvaro!
Interesting question! I must honestly say that I am a bit unfamiliar with the topic you are describing, but will try to give it a shot anyway. Before diving deep into the topic, you are describing three types of nodes. As you mention the plus node can be created by chaining addition nodes as
z2 := x1 + x2 + x3 + ...
. Although themin
andmax
node are not implemented explicitly, you can simply call the non-linearityz1 = max(x1, x2, x3,. ...)
with some approximation method as described in this example: https://reactivebayes.github.io/RxInferExamples.jl/dev/examples/Basic%20Examples/Kalman%20filtering%20and%20smoothing/Kalman%20filtering%20and%20smoothing/#Combination-2:-y-min(x,-w)