monarch-initiative/N2V

View on GitHub
embiggen/embedders/tensorflow_embedders/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Module with node embedding models based on TensorFlow."""
from embiggen.utils.abstract_models import build_init, AbstractEmbeddingModel

build_init(
    module_library_names="tensorflow",
    formatted_library_name="TensorFlow",
    task_name="Node Embedding",
    expected_parent_class=AbstractEmbeddingModel
)