keras-gcnn
keras-gcnn copied to clipboard
ModuleNotFoundError for GrouPy
Hi,
I'm able to install GrouPy using pip install git+https://github.com/nom/GrouPy#egg=GrouPy and while "importing from keras_gcnn.applications.densenetnew import GDenseNet" I'm receiving an error as below:
ModuleNotFoundError Traceback (most recent call last)
2 frames
/usr/local/lib/python3.8/dist-packages/keras_gcnn/layers/convolutional.py in
ModuleNotFoundError: No module named 'groupy.gconv'
Please let me know how I can resolve this.
I had the same issue and what worked for me is coping the three folders 'garray', 'gconv' and 'gfunc' that you can get from cloning, and copy them directly in the 'groupy' folder in your site-packages folder from python.
For some reason when you install groupy using pip it doesn't add these three folders in the groupy folder, but when you manually add them this is fixed.