gregversteeg / bio_corex

A flexible version of CorEx developed for bio-data challenges that handles missing data, continuous/discrete variables, multi-CPU, overlapping structure, and includes visualizations
Apache License 2.0
137 stars 30 forks source link

logsumexp import fails on SciPy #12

Open nealxpatel opened 5 years ago

nealxpatel commented 5 years ago

logsumexp moved from scipy.misc to scipy.special -- quick edit did the trick for me

JeromeHoen commented 5 years ago

Same issue for me.


ImportError Traceback (most recent call last)

in () ----> 1 from bio_corex import corex as ce /content/bio_corex/corex.py in () 21 from os import path 22 from numpy import ma ---> 23 from scipy.misc import logsumexp # Tested with 0.13.0 24 from multiprocessing.dummy import Pool 25 ImportError: cannot import name 'logsumexp' ---------------------------------------------------------------------------