Skip to content

Commit 490eef0

Browse files
author
Johannes Ballé
committed
Removed Sphinx config, added autogenerated API docs.
1 parent ee7254a commit 490eef0

22 files changed

+5870
-281
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
/docs/_build
21
.DS_Store
32
*.pyc
43
*.so

docs/Makefile

Lines changed: 0 additions & 20 deletions
This file was deleted.

docs/api_docs/python/tfc.md

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
<div itemscope itemtype="http://developers.google.com/ReferenceObject">
2+
<meta itemprop="name" content="tfc" />
3+
</div>
4+
5+
# Module: tfc
6+
7+
Data compression tools.
8+
9+
## Classes
10+
11+
[`class EntropyBottleneck`](./tfc/EntropyBottleneck.md): Entropy bottleneck layer.
12+
13+
[`class GDN`](./tfc/GDN.md): Generalized divisive normalization layer.
14+
15+
[`class IdentityInitializer`](./tfc/IdentityInitializer.md): Initialize to the identity kernel with the given shape.
16+
17+
[`class NonnegativeParameterizer`](./tfc/NonnegativeParameterizer.md): Object encapsulating nonnegative parameterization as needed for GDN.
18+
19+
[`class Parameterizer`](./tfc/Parameterizer.md): Parameterizer object (abstract base class).
20+
21+
[`class RDFTParameterizer`](./tfc/RDFTParameterizer.md): Object encapsulating RDFT reparameterization.
22+
23+
[`class SignalConv1D`](./tfc/SignalConv1D.md): 1D convolution layer.
24+
25+
[`class SignalConv2D`](./tfc/SignalConv2D.md): 2D convolution layer.
26+
27+
[`class SignalConv3D`](./tfc/SignalConv3D.md): 3D convolution layer.
28+
29+
[`class StaticParameterizer`](./tfc/StaticParameterizer.md): A parameterization object that always returns a constant tensor.
30+
31+
## Functions
32+
33+
[`irdft_matrix(...)`](./tfc/irdft_matrix.md): Matrix for implementing kernel reparameterization with `tf.matmul`.
34+
35+
[`lower_bound(...)`](./tfc/lower_bound.md): Same as `tf.maximum`, but with helpful gradient for `inputs < bound`.
36+
37+
[`pmf_to_quantized_cdf(...)`](./tfc/pmf_to_quantized_cdf.md): Converts PMF to quantized CDF. This op uses floating-point operations
38+
39+
[`range_decode(...)`](./tfc/range_decode.md): Decodes a range-coded `code` into an int32 tensor of shape `shape`.
40+
41+
[`range_encode(...)`](./tfc/range_encode.md): Using the provided cumulative distribution functions (CDF) inside `cdf`, returns
42+
43+
[`same_padding_for_kernel(...)`](./tfc/same_padding_for_kernel.md): Determine correct amount of padding for `same` convolution.
44+
45+
[`upper_bound(...)`](./tfc/upper_bound.md): Same as `tf.minimum`, but with helpful gradient for `inputs > bound`.
46+

0 commit comments

Comments
 (0)