HazyResearch/fonduer

View on GitHub
src/fonduer/candidates/__init__.py

Summary

Maintainability
A
0 mins
Test Coverage
"""Fonduer's candidate module."""
from fonduer.candidates.candidates import CandidateExtractor
from fonduer.candidates.mentions import (
    MentionCaptions,
    MentionCells,
    MentionDocuments,
    MentionExtractor,
    MentionFigures,
    MentionNgrams,
    MentionParagraphs,
    MentionSections,
    MentionSentences,
    MentionTables,
)

__all__ = [
    "CandidateExtractor",
    "MentionCaptions",
    "MentionCells",
    "MentionDocuments",
    "MentionExtractor",
    "MentionFigures",
    "MentionNgrams",
    "MentionParagraphs",
    "MentionSections",
    "MentionSentences",
    "MentionTables",
]