Skip to content

Commit ea124e1

Browse files
author
Github Actions
committed
Eddie Bergman: fix: Memory leak (#282)
1 parent 4134d5f commit ea124e1

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

47 files changed

+2131
-333
lines changed

main/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 014a0b3e474d147e663d60c9dbef4283
3+
config: 67334eb2462bf4a89eea989ad0bd8270
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
311 Bytes
Binary file not shown.
948 Bytes
Binary file not shown.
4.66 KB
Binary file not shown.
155 Bytes
Binary file not shown.
19.8 KB
Binary file not shown.
437 Bytes
Binary file not shown.

main/.doctrees/api/utils.doctree

269 Bytes
Binary file not shown.

main/.doctrees/environment.pickle

66.2 KB
Binary file not shown.

main/_modules/ConfigSpace/api/distributions.html

Lines changed: 23 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
<script src="../../../_static/underscore.js"></script>
3333
<script src="../../../_static/_sphinx_javascript_frameworks_compat.js"></script>
3434
<script src="../../../_static/doctools.js"></script>
35+
<script src="../../../_static/sphinx_highlight.js"></script>
3536
<link rel="index" title="Index" href="../../../genindex.html" />
3637
<link rel="search" title="Search" href="../../../search.html" />
3738
<meta name="viewport" content="width=device-width, initial-scale=1" />
@@ -88,12 +89,24 @@
8889
</div>
8990

9091
<div class="navbar-end-item">
91-
<form class="bd-search align-items-center" action="../../../search.html" method="get"
92-
style="width: 100%;">
92+
<div class="dropdown mt-1">
93+
<button type="button" class="btn btn-secondary btn-md navbar-btn dropdown-toggle" id="dLabelMore"
94+
data-toggle="dropdown">
95+
v0.6.0
96+
<span class="caret"></span>
97+
</button>
98+
<div class="dropdown-menu list-group-flush py-0" aria-labelledby="dLabelMore">
99+
<a class="list-group-item list-group-item-action" href="#">v0.6.0</a>
100+
</div>
101+
</div>
102+
</div>
103+
104+
<div class="navbar-end-item">
105+
<form class="bd-search align-items-center" action="../../../search.html" method="get" style="width: 100%;">
93106
<i class="icon fas fa-search"></i>
94-
<input type="search" class="form-control" name="q" id="search-input" placeholder="Search the docs ..." aria-label="Search the docs ..." autocomplete="off" >
107+
<input type="search" class="form-control btn btn-md" name="q" id="search-input"
108+
placeholder="Search the docs ..." aria-label="Search the docs ..." autocomplete="off">
95109
</form>
96-
97110
</div>
98111

99112
</div>
@@ -196,21 +209,21 @@ <h1>Source code for ConfigSpace.api.distributions</h1><div class="highlight"><pr
196209

197210
<span class="nd">@dataclass</span>
198211
<span class="k">class</span> <span class="nc">Distribution</span><span class="p">:</span>
199-
<span class="sd">&quot;&quot;&quot;Base distribution type&quot;&quot;&quot;</span>
212+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;Base distribution type&quot;&quot;&quot;</span>
200213

201214
<span class="k">pass</span>
202215

203216

204217
<div class="viewcode-block" id="Uniform"><a class="viewcode-back" href="../../../api/hyperparameters.html#ConfigSpace.api.distributions.Uniform">[docs]</a><span class="nd">@dataclass</span>
205218
<span class="k">class</span> <span class="nc">Uniform</span><span class="p">(</span><span class="n">Distribution</span><span class="p">):</span>
206-
<span class="sd">&quot;&quot;&quot;A uniform distribution&quot;&quot;&quot;</span>
219+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;A uniform distribution&quot;&quot;&quot;</span>
207220

208221
<span class="k">pass</span></div>
209222

210223

211224
<div class="viewcode-block" id="Normal"><a class="viewcode-back" href="../../../api/hyperparameters.html#ConfigSpace.api.distributions.Normal">[docs]</a><span class="nd">@dataclass</span>
212225
<span class="k">class</span> <span class="nc">Normal</span><span class="p">(</span><span class="n">Distribution</span><span class="p">):</span>
213-
<span class="sd">&quot;&quot;&quot;Represents a normal distribution.</span>
226+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;Represents a normal distribution.</span>
214227

215228
<span class="sd"> Parameters</span>
216229
<span class="sd"> ----------</span>
@@ -227,7 +240,7 @@ <h1>Source code for ConfigSpace.api.distributions</h1><div class="highlight"><pr
227240

228241
<div class="viewcode-block" id="Beta"><a class="viewcode-back" href="../../../api/hyperparameters.html#ConfigSpace.api.distributions.Beta">[docs]</a><span class="nd">@dataclass</span>
229242
<span class="k">class</span> <span class="nc">Beta</span><span class="p">(</span><span class="n">Distribution</span><span class="p">):</span>
230-
<span class="sd">&quot;&quot;&quot;Represents a beta distribution.</span>
243+
<span class="w"> </span><span class="sd">&quot;&quot;&quot;Represents a beta distribution.</span>
231244

232245
<span class="sd"> Parameters</span>
233246
<span class="sd"> ----------</span>
@@ -261,14 +274,14 @@ <h1>Source code for ConfigSpace.api.distributions</h1><div class="highlight"><pr
261274

262275
<div class="footer-item">
263276
<p class="copyright">
264-
&copy; Copyright Copyright 2022, Matthias Feurer, Katharina Eggensperger, Syed Mohsin Ali, Christina Hernandez Wunsch, Julien-Charles Levesque, Jost Tobias Springenberg, Philipp Mueller, Marius Lindauer, Jorn Tuyls, Eddie Bergman.<br>
277+
&copy; Copyright Copyright 2023, Matthias Feurer, Katharina Eggensperger, Syed Mohsin Ali, Christina Hernandez Wunsch, Julien-Charles Levesque, Jost Tobias Springenberg, Philipp Mueller, Marius Lindauer, Jorn Tuyls, Eddie Bergman.<br>
265278
</p>
266279
</div>
267280

268281
<div class="footer-item">
269282
<p class="sphinx-version">
270283
Created using <a href="http://sphinx-doc.org/">Sphinx</a>
271-
5.1.1. Template is modified version of <a
284+
5.3.0. Template is modified version of <a
272285
href="https://pydata-sphinx-theme.readthedocs.io">PyData Sphinx Theme</a>. <br>
273286
</p>
274287
</div>

0 commit comments

Comments
 (0)