You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 1, 2024. It is now read-only.
run
cd examples/cifar/ and run flowing readme, but got the flowing error:
envs/diffq/lib/python3.7/site-packages/hydra/_internal/defaults_list.py:389: UserWarning: In config.yaml: Invalid over
riding of hydra/job_logging:
Default list overrides requires 'override' keyword.
See https://hydra.cc/docs/next/upgrades/1.0_to_1.1/defaults_list_override for more information.
I wouldn't advise doing so. The way Hydra parses configs has largely changed in version 1.1, and it is likely the configuration will not have the same meaning if you use hydra_core=1.1. In order to reproduce the experiments from the paper, please use a virutalenv with hydra_core<1.1.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
🐛 Bug Report
run
cd examples/cifar/ and run flowing readme, but got the flowing error:
envs/diffq/lib/python3.7/site-packages/hydra/_internal/defaults_list.py:389: UserWarning: In config.yaml: Invalid over
riding of hydra/job_logging:
Default list overrides requires 'override' keyword.
See https://hydra.cc/docs/next/upgrades/1.0_to_1.1/defaults_list_override for more information.
change examples/cifar/conf/config.yaml
from
1 defaults:
2 - hydra/job_logging: colorlog
3 - hydra/hydra_logging: colorlog
into
1 defaults:
2 - override hydra/job_logging: colorlog
3 - override hydra/hydra_logging: colorlog
can fix the issue
To Reproduce
(Write your steps here:)
pip install .
make examples
cd examples/cifar
pip install -r requirements
./train.py db.name=cifar100 model=mobilenet quant.bits=3 quant.qat=True
Expected behavior
(Write what you thought would happen.)
Actual Behavior
(Write what happened. Add screenshots, if applicable.)
Your Environment
The text was updated successfully, but these errors were encountered: