monarch-initiative/N2V

View on GitHub
embiggen/edge_prediction/edge_prediction_ensmallen/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Submodule providing node embedding models implemented in Ensmallen in Rust."""
from embiggen.edge_prediction.edge_prediction_model import AbstractEdgePredictionModel
from embiggen.utils.abstract_models import build_init

build_init(
    module_library_names="ensmallen",
    formatted_library_name="Ensmallen",
    task_name="Edge Prediction",
    expected_parent_class=AbstractEdgePredictionModel
)