Closed rlouf closed 2 years ago
Closing for now. It is not high priority and it will become pointless once https://github.com/aesara-devs/aesara/issues/886 is closed in aesara
. Better spend that time and energy on aesara
itself or more important issues here.
We noticed in #19 that
aemcmc
samplers did not work with sparse tensors as an input. This seems to be related to the implementation of the@
operator in Aesara (https://github.com/aesara-devs/aesara/issues/881) which, unlikeaesara.tensor.dot
, seems to only work with dense tensors.In this PR we replace every instance of
@
withaesara.tensor.dot
, and add a test to make sure that sparse matrices can be used as inputs tohorseshoe_nbinom
andhorseshoe_logitstic
. Closes #19.