diff --git a/docs/source/getting_started.rst b/docs/source/getting_started.rst index 3542dba..7882b0a 100644 --- a/docs/source/getting_started.rst +++ b/docs/source/getting_started.rst @@ -142,7 +142,7 @@ Martin Jankowiak: martin@basis.ai References ---------- -* Jankowiak, M., 2022. `Bayesian Variable Selection in a Million Dimensions `__ arXiv preprint arXiv:2208.01180. +* Jankowiak, M., 2023. `Bayesian Variable Selection in a Million Dimensions `__ AISTATS 2023. * Zanella, G. and Roberts, G., 2019. `Scalable importance tempering and Bayesian variable selection `__. Journal of the Royal Statistical Society: Series B (Statistical Methodology), 81(3), pp.489-517. @@ -153,12 +153,17 @@ If you use millipede please consider citing: :: -@article{jankowiak2022bayesian, - title={Bayesian Variable Selection in a Million Dimensions}, - author={Martin Jankowiak}, - journal={arXiv preprint arXiv:{2208.01180}, - year={2022}, - eprint={2208.01180}, - archivePrefix={arXiv}, - primaryClass={stat.ME} +@InProceedings{pmlr-v206-jankowiak23a, + title = {Bayesian Variable Selection in a Million Dimensions}, + author = {Jankowiak, Martin}, + booktitle = {Proceedings of The 26th International Conference on Artificial Intelligence and Statistics}, + pages = {253--282}, + year = {2023}, + volume = {206}, + series = {Proceedings of Machine Learning Research}, + month = {25--27 Apr}, + publisher = {PMLR}, + pdf = {https://proceedings.mlr.press/v206/jankowiak23a/jankowiak23a.pdf}, + url = {https://proceedings.mlr.press/v206/jankowiak23a.html}, } + diff --git a/millipede/__init__.py b/millipede/__init__.py index 310fb40..b869c41 100644 --- a/millipede/__init__.py +++ b/millipede/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.1.0" +__version__ = "0.2.0" from millipede.binomial import CountLikelihoodSampler from millipede.normal import NormalLikelihoodSampler diff --git a/setup.py b/setup.py index e7bdc8a..5276911 100644 --- a/setup.py +++ b/setup.py @@ -30,7 +30,7 @@ install_requires=[ "torch>=1.11", "pandas", - "polyagamma==1.3.2", + "polyagamma", "tqdm", ], extras_require={