Issue with caching in bilby.hyper.model
The current method does not check if the input data is the same e.g.
prob1 = hyper_model.prob(data1)
prob2 = hyper_model.prob(data2)
will return the same probabilities.
A data check is required here.
The current method does not check if the input data is the same e.g.
prob1 = hyper_model.prob(data1)
prob2 = hyper_model.prob(data2)
will return the same probabilities.
A data check is required here.