File size: 431 Bytes
f0f2280
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""
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"
]