Skip to content

Commit

Permalink
bump to v0.0.5, rerun pdoc (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
ksaur authored Aug 19, 2020
1 parent af2d3cd commit 46c35fc
Show file tree
Hide file tree
Showing 5 changed files with 43 additions and 11 deletions.
2 changes: 1 addition & 1 deletion doc/html/hummingbird/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ <h1 class="title">Package <code>hummingbird</code></h1>
Entrypoint for Hummingbird modules.
&#34;&#34;&#34;

__version__ = &#34;0.0.4&#34;
__version__ = &#34;0.0.5&#34;
__author__ = &#34;Microsoft&#34;
__producer__ = &#34;hummingbird&#34;
__producer_version__ = __version__
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -327,10 +327,18 @@ <h3>Ancestors</h3>
<h3>Methods</h3>
<dl>
<dt id="hummingbird.ml.operator_converters.onnx.onnx_operator.Cast.forward"><code class="name flex">
<span>def <span class="ident">forward</span></span>(<span>self, x) -> Callable[..., Any]</span>
<span>def <span class="ident">forward</span></span>(<span>self, x)</span>
</code></dt>
<dd>
<div class="desc"></div>
<div class="desc"><p>Defines the computation performed at every call.</p>
<p>Should be overridden by all subclasses.</p>
<div class="admonition note">
<p class="admonition-title">Note</p>
<p>Although the recipe for forward pass needs to be defined within
this function, one should call the :class:<code>Module</code> instance afterwards
instead of this since the former takes care of running the
registered hooks while the latter silently ignores them.</p>
</div></div>
<details class="source">
<summary>
<span>Expand source code</span>
Expand Down Expand Up @@ -369,10 +377,18 @@ <h3>Ancestors</h3>
<h3>Methods</h3>
<dl>
<dt id="hummingbird.ml.operator_converters.onnx.onnx_operator.Concat.forward"><code class="name flex">
<span>def <span class="ident">forward</span></span>(<span>self, *x) -> Callable[..., Any]</span>
<span>def <span class="ident">forward</span></span>(<span>self, *x)</span>
</code></dt>
<dd>
<div class="desc"></div>
<div class="desc"><p>Defines the computation performed at every call.</p>
<p>Should be overridden by all subclasses.</p>
<div class="admonition note">
<p class="admonition-title">Note</p>
<p>Although the recipe for forward pass needs to be defined within
this function, one should call the :class:<code>Module</code> instance afterwards
instead of this since the former takes care of running the
registered hooks while the latter silently ignores them.</p>
</div></div>
<details class="source">
<summary>
<span>Expand source code</span>
Expand Down Expand Up @@ -413,10 +429,18 @@ <h3>Ancestors</h3>
<h3>Methods</h3>
<dl>
<dt id="hummingbird.ml.operator_converters.onnx.onnx_operator.Reshape.forward"><code class="name flex">
<span>def <span class="ident">forward</span></span>(<span>self, x) -> Callable[..., Any]</span>
<span>def <span class="ident">forward</span></span>(<span>self, x)</span>
</code></dt>
<dd>
<div class="desc"></div>
<div class="desc"><p>Defines the computation performed at every call.</p>
<p>Should be overridden by all subclasses.</p>
<div class="admonition note">
<p class="admonition-title">Note</p>
<p>Although the recipe for forward pass needs to be defined within
this function, one should call the :class:<code>Module</code> instance afterwards
instead of this since the former takes care of running the
registered hooks while the latter silently ignores them.</p>
</div></div>
<details class="source">
<summary>
<span>Expand source code</span>
Expand Down
12 changes: 10 additions & 2 deletions doc/html/hummingbird/ml/operator_converters/sklearn/skl_sv.html
Original file line number Diff line number Diff line change
Expand Up @@ -304,10 +304,18 @@ <h3>Ancestors</h3>
<h3>Methods</h3>
<dl>
<dt id="hummingbird.ml.operator_converters.sklearn.skl_sv.SVC.forward"><code class="name flex">
<span>def <span class="ident">forward</span></span>(<span>self, x) -> Callable[..., Any]</span>
<span>def <span class="ident">forward</span></span>(<span>self, x)</span>
</code></dt>
<dd>
<div class="desc"></div>
<div class="desc"><p>Defines the computation performed at every call.</p>
<p>Should be overridden by all subclasses.</p>
<div class="admonition note">
<p class="admonition-title">Note</p>
<p>Although the recipe for forward pass needs to be defined within
this function, one should call the :class:<code>Module</code> instance afterwards
instead of this since the former takes care of running the
registered hooks while the latter silently ignores them.</p>
</div></div>
<details class="source">
<summary>
<span>Expand source code</span>
Expand Down
2 changes: 1 addition & 1 deletion hummingbird/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
Entrypoint for Hummingbird modules.
"""

__version__ = "0.0.4"
__version__ = "0.0.5"
__author__ = "Microsoft"
__producer__ = "hummingbird"
__producer_version__ = __version__
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.4
current_version = 0.0.5

[bdist_wheel]
universal = 1
Expand Down

0 comments on commit 46c35fc

Please sign in to comment.