I get "ValueError: HydraConfig was not set" when I use "hydra.initialize" #1168
Unanswered
RoyBatty42
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I want to use Hydra in Google Colab, and based on the official Hydra documentation (https://hydra.cc/docs/advanced/compose_api/) I do the following:
In the same folder with the above code (which is in a file named test_hydra.py), I have a folder named "conf", with a file named "config.yaml", with a single property "my_test_hydra: test_hydra". The second "print" (from main) is correctly printing the content of the "conf/config.yaml".
I get the following output:
The problem is that I get following error:
Why is it HydraConfig not initialized?
Using
@hydra.main(version_base=None, config_path="conf", config_name="config")
is not an option, because I am inside Google Colab.I tried the above mentioned code in Google Colab, and locally, but the result is the same error.
Before asking here, I checked the official documentation, but I found nothing for this topic.
Beta Was this translation helpful? Give feedback.
All reactions