Skip to content

Commit

Permalink
Stray print function (#35)
Browse files Browse the repository at this point in the history
* removing a stray printing function

* bunmping minor version number
  • Loading branch information
htjb authored Aug 5, 2023
1 parent 4f5cd26 commit 698fdef
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Introduction

:margarine: Marginal Bayesian Statistics
:Authors: Harry T.J. Bevins
:Version: 1.0.1
:Version: 1.0.2
:Homepage: https://github.com/htjb/margarine
:Documentation: https://margarine.readthedocs.io/

Expand Down
1 change: 0 additions & 1 deletion margarine/clustered.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,6 @@ def log_prob(self, params):
probs[j] = np.log(1e-300)
logprob.append(probs)
logprob = np.array(logprob)
print(logprob.shape)
logprob = logsumexp(logprob, axis=0)

return logprob
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def readme(short=False):

setup(
name='margarine',
version='1.0.1',
version='1.0.2',
description='margarine: Posterior Sampling and Marginal Bayesian Statistics',
long_description=readme(),
author='Harry T. J. Bevins',
Expand Down

0 comments on commit 698fdef

Please sign in to comment.