Is there a way to store wanted value when Octopus is running?
For example, by running Octopus, I will have results between 0 and 100, but I’m looking for a way to store the value smaller than 80. I’ve tried with gate, it’s not working very well.
Is there a way to store wanted value when Octopus is running?
What do you mean by “store”?
if(x<=80, x, y)
where y
is the value that x gets replaced with if it’s not smaller than 80.abs(x-80)/(100-0)
where x
is the current “View Obstructed” value between a range from 0
to 100
with an optimum of 80
Maybe these tips help. Unfortunately I’m at a computer without gh right now so I can’t give visual examples. If you can further define what you mean by “storing” the value I’ll try again to come up with something
M.
Thanks for you advises Max. Now I’m minimizing 3 objectives. 80 is the acceptable value, all the view value > 80 is considered unwanted. So my goal is running Octopus, when Octopus has a view value = 91, pass this derivative and keep running.
The propose to use “null” is to tell Octopus don’t “store” this derivative because if I don’t design a gate here, my pareto front are full of unwanted results.
Yesterday I run Octopus with the first gate, it stopped when receives an empty value. However, I tried again today, it’s works very well. All the pareto front are good result. Don’t know why, it just worked.
By the way, I have another puzzle about the result from Octopus. As we know, the result exported from Octopus is like 40.910947133595932. How do we understand this kind of result? We just consider this as 40.9?
Zou
It seems to me that you are trying to set up a sort of step-by-step optimization, I don’t know if Octopus is the right tool there or if it’s even possible to set this up in a stable manner. But then again I also haven’t seen your whole setup so I’m just guessing here.
If I remember correctly, you can pass a hard-constraint to Octopus as a boolean value. Octopus will then consider every solution where the value is False
as invalid and only True
solutions are considered feasible. This may be better for Octopus than the <null>
, however it may also be yesterdays news since it’s a long time since I have used Octopus.
About the exported result from Octopus I don’t know, sorry.
M.