CoteDave

Results 20 comments of CoteDave

Did someone find a patch with the self.keras_model.add_loss(loss) --> TypeError: unhashable type: 'ListWrapper' Problem ?

The quick patch i found is to change import tensorflow as tf --> import tensorflow.compat.v1 as tf in the "dice_tensorflow1.py" file

Oh I See... I will take a look and let you know if I find something... Thanks!

Hi @bacalfa , I've tried your fork with the setup.py Unfortunatly, still not working for me, because of this line: extra_compile_args = ["/O2"] Error occuring when: building 'pysurvival.utils._functions' extension Error:...

Hi @bacalfa , changed the line 61. No more /O2 error, but sadly, a new error occurs at the same place: building 'pysurvival.utils._functions' extension c:/mingw/bin/../lib/gcc/mingw32/9.2.0/../../../../mingw32/bin/ld.exe: C:\...\Anaconda3\libs/libpython38.dll.a: error adding symbols: file...

Hi, is there any hope to see a working version for windows ? Looks like the best package available for survival analysis ! Thanks!

I've got a "numpy-only" implementation of eif (by 'Matias Carrasco Kind & Sahand Hariri') if your interested.

""" Extended Isolation forest functions This is the implementation of the Extended Isolation Forest anomaly detection algorithm. This extension, improves the consistency and reliability of the anomaly score produced by...