chenzhaiyu / polygnn

PolyGNN: Polyhedron-based graph neural network for 3D building reconstruction from point clouds
76 stars 4 forks source link

Incomplete hydra config? #6

Closed rujialiu closed 2 months ago

rujialiu commented 2 months ago

First of all, thanks for this wonderful work! It's very inspiring.

I've just cloned your repo and started to run the download script. However, it got the following error:

>python download.py dataset=munich
In 'hydra/config': Could not find 'hydra/hydra_logging/colorlog'

Available options in 'hydra/hydra_logging':
        default
        disabled
        hydra_debug
        none
Config search path:
        provider=hydra, path=pkg://hydra.conf
        provider=main, path=file://D:\github_raw\ai_code\polygnn\conf
        provider=schema, path=structured://

Set the environment variable HYDRA_FULL_ERROR=1 for a complete stack trace.

I'm using windows 10, python 3.11.

chenzhaiyu commented 2 months ago

Hi @rujialiu, you might need to install hydra_colorlog:

pip install hydra_colorlog --upgrade
rujialiu commented 2 months ago

That works! Thank you!