Skip to content

Commit 576e6fc

Browse files
author
github-actions
committed
Update API docs from pynever
1 parent eab7f6f commit 576e6fc

16 files changed

Lines changed: 208 additions & 84 deletions

pynever/API/0_Networks.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
4545
<p class="caption" role="heading"><span class="caption-text">Getting started</span></p>
4646
<ul>
47-
<li class="toctree-l1"><a class="reference internal" href="../Setup/setup.html">Installation and Setup</a></li>
47+
<li class="toctree-l1"><a class="reference internal" href="../Setup/install.html">Installation and Setup</a></li>
4848
</ul>
4949
<p class="caption" role="heading"><span class="caption-text">Usage</span></p>
5050
<ul>

pynever/API/1_Nodes.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
4545
<p class="caption" role="heading"><span class="caption-text">Getting started</span></p>
4646
<ul>
47-
<li class="toctree-l1"><a class="reference internal" href="../Setup/setup.html">Installation and Setup</a></li>
47+
<li class="toctree-l1"><a class="reference internal" href="../Setup/install.html">Installation and Setup</a></li>
4848
</ul>
4949
<p class="caption" role="heading"><span class="caption-text">Usage</span></p>
5050
<ul>

pynever/API/2_Training.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
4545
<p class="caption" role="heading"><span class="caption-text">Getting started</span></p>
4646
<ul>
47-
<li class="toctree-l1"><a class="reference internal" href="../Setup/setup.html">Installation and Setup</a></li>
47+
<li class="toctree-l1"><a class="reference internal" href="../Setup/install.html">Installation and Setup</a></li>
4848
</ul>
4949
<p class="caption" role="heading"><span class="caption-text">Usage</span></p>
5050
<ul>

pynever/API/3_Conversion.html

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

pynever/API/4_Verification.html

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

pynever/Guide/usage.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<link rel="index" title="Index" href="../genindex.html" />
2121
<link rel="search" title="Search" href="../search.html" />
2222
<link rel="next" title="Networks" href="../API/0_Networks.html" />
23-
<link rel="prev" title="Installation and Setup" href="../Setup/setup.html" />
23+
<link rel="prev" title="Installation and Setup" href="../Setup/install.html" />
2424
</head>
2525

2626
<body class="wy-body-for-nav">
@@ -44,7 +44,7 @@
4444
</div><div class="wy-menu wy-menu-vertical" data-spy="affix" role="navigation" aria-label="Navigation menu">
4545
<p class="caption" role="heading"><span class="caption-text">Getting started</span></p>
4646
<ul>
47-
<li class="toctree-l1"><a class="reference internal" href="../Setup/setup.html">Installation and Setup</a></li>
47+
<li class="toctree-l1"><a class="reference internal" href="../Setup/install.html">Installation and Setup</a></li>
4848
</ul>
4949
<p class="caption" role="heading"><span class="caption-text">Usage</span></p>
5050
<ul class="current">
@@ -132,7 +132,7 @@ <h2>Supported layers<a class="headerlink" href="#supported-layers" title="Link t
132132
</div>
133133
</div>
134134
<footer><div class="rst-footer-buttons" role="navigation" aria-label="Footer">
135-
<a href="../Setup/setup.html" class="btn btn-neutral float-left" title="Installation and Setup" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
135+
<a href="../Setup/install.html" class="btn btn-neutral float-left" title="Installation and Setup" accesskey="p" rel="prev"><span class="fa fa-arrow-circle-left" aria-hidden="true"></span> Previous</a>
136136
<a href="../API/0_Networks.html" class="btn btn-neutral float-right" title="Networks" accesskey="n" rel="next">Next <span class="fa fa-arrow-circle-right" aria-hidden="true"></span></a>
137137
</div>
138138

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
<li><a href="../index.html" class="icon icon-home" aria-label="Home"></a></li>
7676
<li class="breadcrumb-item active">Installation and Setup</li>
7777
<li class="wy-breadcrumbs-aside">
78-
<a href="../_sources/Setup/setup.rst.txt" rel="nofollow"> View page source</a>
78+
<a href="../_sources/Setup/install.rst.txt" rel="nofollow"> View page source</a>
7979
</li>
8080
</ul>
8181
<hr/>

pynever/_sources/API/3_Conversion.rst.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,20 @@
33
Conversion
44
==========
55

6+
**pyNeVer** provides conversion capabilities to import a NN model in the ONNX and pyTorch file formats,
7+
as well as to export to these formats trained NNs.
8+
9+
Representation
10+
--------------
11+
612
.. automodule:: pynever.strategies.conversion.representation
713
:members:
814

15+
Converters
16+
----------
17+
918
.. automodule:: pynever.strategies.conversion.converters.onnx
1019
:members:
20+
21+
.. automodule:: pynever.strategies.conversion.converters.pytorch
22+
:members:

pynever/_sources/API/4_Verification.rst.txt

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,23 @@
33
Verification
44
============
55

6+
To solve a verification problem **pyNeVer** can define the specifications to verify and instantiate
7+
verification algorithms to try and prove that these specifications hold.
8+
9+
Properties
10+
----------
11+
612
.. automodule:: pynever.strategies.verification.properties
713
:members:
814

9-
.. automodule:: pynever.strategies.verification.parameters
10-
:members:
15+
Algorithms
16+
----------
1117

1218
.. automodule:: pynever.strategies.verification.algorithms
1319
:members:
20+
21+
Parameters
22+
----------
23+
24+
.. automodule:: pynever.strategies.verification.parameters
25+
:members:

0 commit comments

Comments
 (0)