openml/automlbenchmark

Does H2OAutoML run in venv?

sedol1339 opened this issue · 2 comments

Hello! frameworks/H2OAutoML/ folder contains setup.sh that seems to install packages in a separate venv. However, exec.py does not use the run_in_venv method. So, the venv is created but not used?

exec.py defines a run function which may or may not be called from a separate process with its own virtual environment. Whether not it is executed in a virtual environment depends on the run function of __init__.py. As you can see here, the run function from exec.py will be executed from run_in_venv.

Understood, thank you!