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
I wanted to run training inside colab notebook using code that utilizes dora. But after installation hydra_main seems to be missing.
from dora import hydra_main gives me following exception
[<ipython-input-8-0d1fd6af93ab>](https://localhost:8080/#) in <cell line: 1>()
----> 1 from dora import hydra_main
ImportError: cannot import name 'hydra_main' from 'dora' (/usr/local/lib/python3.9/dist-packages/dora/__init__.py)
I installed it with pip install -U dora-search
and tried few different versions.
Your Environment
Both kaggle or colab notebooks.
Or maybe this is expected and one can't use dora inside colab?
The text was updated successfully, but these errors were encountered:
from dora import hydra should work if hydra is installed. Running ! pip install hydra-core first should make it appear. Do it before you first try importing dora.
🐛 Bug Report
I wanted to run training inside colab notebook using code that utilizes
dora
. But after installationhydra_main
seems to be missing.from dora import hydra_main
gives me following exceptionI installed it with
pip install -U dora-search
and tried few different versions.
Your Environment
Both kaggle or colab notebooks.
Or maybe this is expected and one can't use
dora
inside colab?The text was updated successfully, but these errors were encountered: