Richard Hayes
Richard Hayes
Hi Max. Could you try putting your code in a function or using `if __name__ == "__main__"`? Something like: ```python if __name__ == "__main__": # your code goes here.
Great! I think if you don't use the main check then the module gets imported when the new process starts causing a recursion. On Fri, 8 Jul 2022, 16:51 MAX22110,...
I don't think there is anyway to avoid this exception on MacOS doing multiprocessing without that check. I'll have a dig just in case.
Could you see me your script so I can try to replicate the issue? On Tue, 12 Jul 2022, 10:27 MAX22110, ***@***.***> wrote: > Hi, I’m afraid (though I’m not...
It seems like this should be the default behaviour as the completed boolean in the database would initially be false?
Is this not the same as the centre of the posterior/prior?
I wonder if it makes sense to put it in the Prior class? Feels like polluting the code for a single optimiser but it could make sense
It seems sensible then to put it in a Prior. If it's not present the Prior can simply default to the median value.
@matthewghgriffiths did have a crack at this
@matthewghgriffiths this is an error that may have been silenced previously due to exception handling in Expectation Propagation. Any idea what is causing this and if we should be concerned?