All of the following places need to be changed to: if np.all(self._phi==None) or self._phi is None, depending on type information...
/home/jammurdo/workspace/vsm/vsm/viewer/ldacgsviewer.py:63:
FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.
if self._phi==None:
/home/jammurdo/workspace/vsm/vsm/viewer/ldacgsviewer.py:210:
FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.
elif not topic_indices==None:
/home/jammurdo/workspace/vsm/vsm/viewer/ldacgsviewer.py:75:
FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.
if self._theta==None:
/home/jammurdo/workspace/vsm/vsm/viewer/ldacgsviewer.py:85:
FutureWarning: comparison to `None` will result in an elementwise object comparison in the future.
if self._H_phi==None:
All of the following places need to be changed to: if
np.all(self._phi==None)
orself._phi is None
, depending on type information...