Skip to content

Commit 7286ea9

Browse files
committed
[doc update] adding query filter in configs
1 parent b692e55 commit 7286ea9

41 files changed

Lines changed: 517 additions & 144 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
12.1 KB
Binary file not shown.
21.6 KB
Binary file not shown.
9.56 KB
Binary file not shown.
3.73 KB
Binary file not shown.

docs/_build/html/.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 records the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 9472031b4c81038c2419c1ff3b6095e3
3+
config: ae4b048c5f7a057a26ece28fa29704fc
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
-57.7 KB
Binary file not shown.

docs/_build/html/_modules/PTLF/_pipeline.html

Lines changed: 35 additions & 35 deletions
Large diffs are not rendered by default.

docs/_build/html/_modules/PTLF/context.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<head>
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>PTLF.context &mdash; PyTorchLabFlow 1.0 documentation</title>
8+
<title>PTLF.context &mdash; PyTorchLabFlow 0.4 documentation</title>
99
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=b86133f3" />
1010
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=e59714d7" />
1111

1212

1313
<script src="../../_static/jquery.js?v=5d32c60e"></script>
1414
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
15-
<script src="../../_static/documentation_options.js?v=f2a433a1"></script>
15+
<script src="../../_static/documentation_options.js?v=7f00635f"></script>
1616
<script src="../../_static/doctools.js?v=9bcbadda"></script>
1717
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
1818
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>

docs/_build/html/_modules/PTLF/experiment.html

Lines changed: 80 additions & 19 deletions
Large diffs are not rendered by default.

docs/_build/html/_modules/PTLF/lab.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
<head>
66
<meta charset="utf-8" />
77
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
8-
<title>PTLF.lab &mdash; PyTorchLabFlow 1.0 documentation</title>
8+
<title>PTLF.lab &mdash; PyTorchLabFlow 0.4 documentation</title>
99
<link rel="stylesheet" type="text/css" href="../../_static/pygments.css?v=b86133f3" />
1010
<link rel="stylesheet" type="text/css" href="../../_static/css/theme.css?v=e59714d7" />
1111

1212

1313
<script src="../../_static/jquery.js?v=5d32c60e"></script>
1414
<script src="../../_static/_sphinx_javascript_frameworks_compat.js?v=2cd50e6c"></script>
15-
<script src="../../_static/documentation_options.js?v=f2a433a1"></script>
15+
<script src="../../_static/documentation_options.js?v=7f00635f"></script>
1616
<script src="../../_static/doctools.js?v=9bcbadda"></script>
1717
<script src="../../_static/sphinx_highlight.js?v=dc90522c"></script>
1818
<script crossorigin="anonymous" integrity="sha256-Ae2Vz/4ePdIu6ZyI/5ZGsYnb+m0JlOmKPjt6XZ9JJkA=" src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.4/require.min.js"></script>
@@ -295,7 +295,7 @@ <h1>Source code for PTLF.lab</h1><div class="highlight"><pre>
295295
<span class="n">settings</span> <span class="o">=</span> <span class="n">get_shared_data</span><span class="p">()</span>
296296
<span class="n">log_path</span> <span class="o">=</span> <span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">settings</span><span class="p">[</span><span class="s2">&quot;data_path&quot;</span><span class="p">],</span> <span class="s2">&quot;logs.db&quot;</span><span class="p">)</span>
297297
<span class="n">db</span> <span class="o">=</span> <span class="n">Db</span><span class="p">(</span><span class="n">db_path</span><span class="o">=</span><span class="n">log_path</span><span class="p">)</span>
298-
<span class="n">cursor</span> <span class="o">=</span> <span class="n">db</span><span class="o">.</span><span class="n">query</span><span class="p">(</span><span class="s2">&quot;SELECT * FROM logs&quot;</span><span class="p">)</span>
298+
<span class="n">cursor</span> <span class="o">=</span> <span class="n">db</span><span class="o">.</span><span class="n">execute</span><span class="p">(</span><span class="s2">&quot;SELECT * FROM logs&quot;</span><span class="p">)</span>
299299
<span class="n">rows</span> <span class="o">=</span> <span class="n">cursor</span><span class="o">.</span><span class="n">fetchall</span><span class="p">()</span>
300300
<span class="n">col_names</span> <span class="o">=</span> <span class="p">[</span><span class="n">desc</span><span class="p">[</span><span class="mi">0</span><span class="p">]</span> <span class="k">for</span> <span class="n">desc</span> <span class="ow">in</span> <span class="n">cursor</span><span class="o">.</span><span class="n">description</span><span class="p">]</span>
301301
<span class="n">db</span><span class="o">.</span><span class="n">close</span><span class="p">()</span>

0 commit comments

Comments
 (0)