HazyResearch/fonduer

View on GitHub
src/fonduer/learning/models/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Fonduer's learning model module."""
from fonduer.learning.models.marginal import Marginal
from fonduer.learning.models.prediction import Prediction, PredictionKey

__all__ = ["Marginal", "Prediction", "PredictionKey"]