Hello, everybody.
I am using "Branch" operator
and have 4 questions regarding it.
-- 1. If the condition of the Branch operator is "if the number of examples >= 100"
I want to do "something" as usual in "Then" subpart,
but want to do "nothing" in "Else" subpart,
That is, in the "Else" part, just do "nothing", so it is disconected and there is no output from there
Then in some cases, there is error, because of no output from there.
So how can I solve this problem??
-- 2. If the condition of "Branch" is "if the number of examples == 100"
then what should I use as the condition of the Branch operator??
-- 3. If the condition of the Branch is satisfied, it will go to "Then" subpart,
otherwise, it will go to "Else" subpart.
If it goes to "Then" part, I want it to connect to operator A
Otherwise ("Else"), I want it to connect to operator B.
That is, if it passes thru "Then" part, I want to go to operator A after exiting the Branch
Otherwise("Else"), I want to go to operator B after exiting the Branch
Is there any way I can do this??
-- 4. Both "Then" part and "Else" part can have multiple output ports.
If I want to create 3 output ports in the "Then"
and want to create 2 output ports in the "Else"
is it possible??
Thank you in advance