b2b-ecomm-ner / __init__.py
Purva17's picture
Upload folder using huggingface_hub
f0f2280 verified
raw
history blame contribute delete
431 Bytes
"""
B2B Ecommerce NER Model - Hugging Face Compatible Package
This package provides a Named Entity Recognition model specifically designed
for B2B ecommerce order processing with product catalog fuzzy matching.
"""
from .model import B2BEcommerceNER, load_model, pipeline
__version__ = "1.0.0"
__author__ = "Your Name"
__email__ = "[email protected]"
__all__ = [
"B2BEcommerceNER",
"load_model",
"pipeline"
]