Sela Fried
Sela Fried
For example, taking the file 1d.POMDP from http://www.pomdp.org/examples/ gives the error 'mab_bv1': UtilityFunction.mab_bv1(min(self.model.costs), C), TypeError: 'NoneType' object is not iterable If I add the line costs: 0 0 to the...
So, if I understand correctly, if in my POMDP the reward depends only on s_i and a_i, then it should work? Also, as far as I understand, this is only...
Ok, great! I actually have my own implementation for POMCP, but as I need to solve many models, I wanted to see weather there is a faster implementation than my...
Thanks for your reply. Fortunately in my model the rewards are only dependent on the action and the current state, so i'm able now to run your code. Could you...
Thank for the reply. As far as I understand, every online solver can be made offline if we let it run on a simulator until it gets to an (maybe)...
Is it possible to exclude specific points in the bounds? I mean, when defining BayesianOptimization(f=black_box_function, pbounds={'e': (0, 1)}) I do not actually want 'e' to be 0. Surely I can...