{ "cells": [ { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "%load_ext autoreload\n", "%autoreload 2" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "import a_module\n", "from hydra.experimental import compose, initialize, initialize_config_dir, initialize_config_module\n", "from hydra.core.global_hydra import GlobalHydra\n", "from pathlib import Path" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Initialize Hydra in a module called by Jupyter" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'foo': 10}" ] }, "execution_count": 3, "metadata": {}, "output_type": "execute_result" } ], "source": [ "GlobalHydra.instance().clear()\n", "a_module.hydra_initialize()\n", "compose(overrides=[\"+group1=file1\"])" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'foo': 10}" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "GlobalHydra.instance().clear()\n", "a_module.hydra_initialize_config_module()\n", "compose(overrides=[\"+group1=file1\"])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "### Initialize Hydra directly in the notebook" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'foo': 10}" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "GlobalHydra.instance().clear()\n", "initialize(config_path=\"../../hydra/test_utils/configs\")\n", "compose(overrides=[\"+group1=file1\"])" ] }, { "cell_type": "code", "execution_count": 6, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'foo': 10}" ] }, "execution_count": 6, "metadata": {}, "output_type": "execute_result" } ], "source": [ "GlobalHydra.instance().clear()\n", "abs_conf_dir = Path.cwd() / \"../../hydra/test_utils/configs\"\n", "initialize_config_dir(config_dir=str(abs_conf_dir))\n", "compose(overrides=[\"+group1=file1\"])" ] }, { "cell_type": "code", "execution_count": 7, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "{'foo': 10}" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "GlobalHydra.instance().clear()\n", "initialize_config_module(config_module=\"hydra.test_utils.configs\")\n", "compose(overrides=[\"+group1=file1\"])" ] } ], "metadata": { "kernelspec": { "display_name": "Python 3", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.8.2" } }, "nbformat": 4, "nbformat_minor": 4 }