monarch-initiative/N2V

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

Summary

Maintainability
A
0 mins
Test Coverage
"""Submodule providing edge prediction models based on LightGBM Models."""
from embiggen.edge_prediction.sklearn_like_edge_prediction_adapter import (
    SklearnLikeEdgePredictionAdapter,
)
from embiggen.utils.abstract_models import build_init

build_init(
    module_library_names="lightgbm",
    formatted_library_name="LightGBM",
    task_name="Edge Prediction",
    expected_parent_class=SklearnLikeEdgePredictionAdapter,
)