Changes in vis_corex.py
-
DeprecationWarning:
logsumexp
is deprecated!- Before:
from scipy.misc import logsumexp
- After:
from scipy.special import logsumexp
- Before:
-
UserWarning: The
size
parameter has been renamed toheight
; pleaes update your code.- Before:
sns.pairplot(subdata, kind="reg", diag_kind="kde", size=5, dropna=True)
- After:
sns.pairplot(subdata, kind="reg", diag_kind="kde", height=5, dropna=True)
- Before:
Changes in readme.md
-
added
graphviz
installation instructions for Ubuntu users -
added
requirements.txt
which lets users to install all the dependencies with a single commandconda install --yes --file requirements.txt
Added minimum value to sig_ml of 0.5 in function estimate_parameters. This prevents divide by zero in functional marginal_p.