Spaces:
Sleeping
Sleeping
File size: 236 Bytes
47bc13b |
1 2 3 4 5 6 7 |
"""Model architectures for address NER."""
from address_parser.models.bert_crf import BertCRFForTokenClassification
from address_parser.models.config import ModelConfig
__all__ = ["BertCRFForTokenClassification", "ModelConfig"]
|