monarch-initiative/N2V

View on GitHub
embiggen/layers/tensorflow/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Submodule providing tensorflow layers."""
from embiggen.layers.tensorflow.graph_convolution_layer import GraphConvolution
from embiggen.layers.tensorflow.noise_contrastive_estimation import NoiseContrastiveEstimation
from embiggen.layers.tensorflow.sampled_softmax import SampledSoftmax
from embiggen.layers.tensorflow.embedding_lookup import EmbeddingLookup
from embiggen.layers.tensorflow.flat_embedding import FlatEmbedding
from embiggen.layers.tensorflow.l2_norm import L2Norm
from embiggen.layers.tensorflow.element_wise_l1 import ElementWiseL1
from embiggen.layers.tensorflow.element_wise_l2 import ElementWiseL2

__all__ = [
    "GraphConvolution",
    "NoiseContrastiveEstimation",
    "SampledSoftmax",
    "EmbeddingLookup",
    "FlatEmbedding",
    "L2Norm",
    "ElementWiseL1",
    "ElementWiseL2"
]