Skip to content

Commit

Permalink
René Sass: Merge pull request #872 from automl/fix_mo_cache
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Actions committed Jul 7, 2022
1 parent 1dd7101 commit e5dc17f
Show file tree
Hide file tree
Showing 239 changed files with 851 additions and 811 deletions.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified development/.doctrees/api/smac.runhistory.runhistory.doctree
Binary file not shown.
Binary file modified development/.doctrees/api/smac.utils.multi_objective.doctree
Binary file not shown.
Binary file modified development/.doctrees/details/arguments.doctree
Binary file not shown.
Binary file modified development/.doctrees/details/scenario.doctree
Binary file not shown.
Binary file modified development/.doctrees/environment.pickle
Binary file not shown.
Binary file not shown.
Binary file modified development/.doctrees/examples/python/plot_mlp_mf.doctree
Binary file not shown.
Binary file not shown.
Binary file modified development/.doctrees/examples/python/plot_sgd_instances.doctree
Binary file not shown.
Binary file not shown.
Binary file modified development/.doctrees/examples/python/plot_svm_cv.doctree
Binary file not shown.
Binary file modified development/.doctrees/examples/python/plot_svm_eips.doctree
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified development/.doctrees/examples/python/sg_execution_times.doctree
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
},
"outputs": [],
"source": [
"__copyright__ = \"Copyright 2021, AutoML.org Freiburg-Hannover\"\n__license__ = \"3-clause BSD\"\n\nimport numpy as np\nfrom ConfigSpace.hyperparameters import UniformFloatHyperparameter\nfrom matplotlib import pyplot as plt\n\nfrom smac.configspace import ConfigurationSpace\nfrom smac.facade.smac_bb_facade import SMAC4BB\nfrom smac.scenario.scenario import Scenario\n\n\ndef schaffer(x):\n f1 = np.square(x)\n f2 = np.square(np.sqrt(f1) - 2)\n\n return f1, f2\n\n\ndef plot(all_x):\n plt.figure()\n for x in all_x:\n f1, f2 = schaffer(x)\n plt.scatter(f1, f2, c=\"blue\", alpha=0.1)\n\n plt.show()\n\n\ndef plot_from_smac(smac):\n rh = smac.get_runhistory()\n all_x = []\n for (config_id, _, _, _) in rh.data.keys():\n config = rh.ids_config[config_id]\n all_x.append(config[\"x\"])\n\n plot(all_x)\n\n\ndef tae(cfg):\n f1, f2 = schaffer(cfg[\"x\"])\n return {\"metric1\": f1, \"metric2\": f2}\n\n\nif __name__ == \"__main__\":\n MIN_V = -2\n MAX_V = 2\n\n # Simple configspace\n cs = ConfigurationSpace()\n cs.add_hyperparameter(UniformFloatHyperparameter(\"x\", lower=MIN_V, upper=MAX_V))\n\n # Scenario object\n scenario = Scenario(\n {\n \"run_obj\": \"quality\", # we optimize quality (alternatively runtime)\n \"runcount-limit\": 50, # max. number of function evaluations\n \"cs\": cs, # configuration space\n \"multi_objectives\": \"metric1, metric2\",\n \"limit_resources\": False,\n }\n )\n\n smac = SMAC4BB(\n scenario=scenario,\n rng=np.random.RandomState(5),\n tae_runner=tae,\n )\n incumbent = smac.optimize()\n\n # Plot the evaluated points\n plot_from_smac(smac)"
"__copyright__ = \"Copyright 2021, AutoML.org Freiburg-Hannover\"\n__license__ = \"3-clause BSD\"\n\nimport numpy as np\nfrom ConfigSpace.hyperparameters import UniformFloatHyperparameter\nfrom matplotlib import pyplot as plt\n\nfrom smac.configspace import ConfigurationSpace\nfrom smac.facade.smac_bb_facade import SMAC4BB\nfrom smac.scenario.scenario import Scenario\n\n\ndef schaffer(x):\n f1 = np.square(x)\n f2 = np.square(np.sqrt(f1) - 2)\n\n return f1, f2\n\n\ndef plot(all_x):\n plt.figure()\n for x in all_x:\n f1, f2 = schaffer(x)\n plt.scatter(f1, f2, c=\"blue\", alpha=0.1, zorder=3000)\n\n plt.vlines([1], 0, 4, linestyles=\"dashed\", colors=[\"red\"])\n plt.hlines([1], 0, 4, linestyles=\"dashed\", colors=[\"red\"])\n\n plt.show()\n\n\ndef plot_from_smac(smac):\n rh = smac.get_runhistory()\n all_x = []\n for (config_id, _, _, _) in rh.data.keys():\n config = rh.ids_config[config_id]\n all_x.append(config[\"x\"])\n\n plot(all_x)\n\n\ndef tae(cfg):\n f1, f2 = schaffer(cfg[\"x\"])\n return {\"metric1\": f1, \"metric2\": f2}\n\n\nif __name__ == \"__main__\":\n MIN_V = -2\n MAX_V = 2\n\n # Simple configspace\n cs = ConfigurationSpace()\n cs.add_hyperparameter(UniformFloatHyperparameter(\"x\", lower=MIN_V, upper=MAX_V))\n\n # Scenario object\n scenario = Scenario(\n {\n \"run_obj\": \"quality\", # we optimize quality (alternatively runtime)\n \"runcount-limit\": 50, # max. number of function evaluations\n \"cs\": cs, # configuration space\n \"multi_objectives\": \"metric1, metric2\",\n \"limit_resources\": False,\n }\n )\n\n smac = SMAC4BB(\n scenario=scenario,\n rng=np.random.RandomState(5),\n tae_runner=tae,\n )\n incumbent = smac.optimize()\n\n # Plot the evaluated points\n plot_from_smac(smac)"
]
}
],
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,10 @@ def plot(all_x):
plt.figure()
for x in all_x:
f1, f2 = schaffer(x)
plt.scatter(f1, f2, c="blue", alpha=0.1)
plt.scatter(f1, f2, c="blue", alpha=0.1, zorder=3000)

plt.vlines([1], 0, 4, linestyles="dashed", colors=["red"])
plt.hlines([1], 0, 4, linestyles="dashed", colors=["red"])

plt.show()

Expand Down
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified development/_images/sphx_glr_plot_simple_multi_objective_001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion development/_modules/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/callbacks.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/base_epm.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/base_gp.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/base_imputor.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/base_rf.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/gaussian_process.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/gaussian_process_mcmc.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/gp_base_prior.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/gp_kernels.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/random_epm.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/rf_with_instances.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/rfr_imputator.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/epm/util_funcs.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/facade/func_facade.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/facade/hyperband_facade.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/facade/roar_facade.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
4 changes: 2 additions & 2 deletions development/_modules/smac/facade/smac_ac_facade.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down Expand Up @@ -937,7 +937,7 @@ <h1>Source code for smac.facade.smac_ac_facade</h1><div class="highlight"><pre>

<span class="k">if</span> <span class="n">scenario</span><span class="o">.</span><span class="n">multi_objectives</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span> <span class="ow">and</span> <span class="n">num_obj</span> <span class="o">&gt;</span> <span class="mi">1</span><span class="p">:</span> <span class="c1"># type: ignore[attr-defined] # noqa F821</span>
<span class="c1"># define any defaults here</span>
<span class="n">_multi_objective_kwargs</span> <span class="o">=</span> <span class="p">{</span><span class="s2">&quot;rng&quot;</span><span class="p">:</span> <span class="n">rng</span><span class="p">,</span> <span class="s2">&quot;num_obj&quot;</span><span class="p">:</span> <span class="n">num_obj</span><span class="p">}</span>
<span class="n">_multi_objective_kwargs</span> <span class="o">=</span> <span class="p">{</span><span class="s2">&quot;rng&quot;</span><span class="p">:</span> <span class="n">rng</span><span class="p">}</span>

<span class="k">if</span> <span class="n">multi_objective_kwargs</span> <span class="ow">is</span> <span class="ow">not</span> <span class="kc">None</span><span class="p">:</span>
<span class="n">_multi_objective_kwargs</span><span class="o">.</span><span class="n">update</span><span class="p">(</span><span class="n">multi_objective_kwargs</span><span class="p">)</span>
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/facade/smac_bb_facade.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/facade/smac_hpo_facade.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
2 changes: 1 addition & 1 deletion development/_modules/smac/facade/smac_mf_facade.html
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@


<!-- Only show if we have sidebars configured, else just a small margin -->
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0">SMAC3 Documentation</h4>
<div class="col-12 col-md-3 bd-sidebar"><h4 class="mt-0 mb-0"><a href="../../../index.html">SMAC3 Documentation</a></h4>
<div class="mb-3">v1.3.4</div><nav class="bd-links" id="bd-docs-nav" aria-label="Main navigation">
<div class="bd-toc-item active">
<ul class="nav bd-sidenav">
Expand Down
Loading

0 comments on commit e5dc17f

Please sign in to comment.