WIP
- Clone repository
- Install PyTorch >= 1.7
pip install -r requirements.txt
Nota Bene:
- if you prefer I also provide a
Dockerfile
to install the necessary packages. hydra
andpytorch lightning
logging don't work great together (specifically pytorch lighning logs go to stderr and don't propagate). To have a better logging experience you should comment (or delete) out the folowing lines inpytorch_lightning/__init__.py
:
if not _root_logger.hasHandlers():
_logger.addHandler(logging.StreamHandler())
_logger.propagate = False