token-classification
Browse files- handler.py +1 -1
handler.py
CHANGED
@@ -4,7 +4,7 @@ from transformers import pipeline
|
|
4 |
|
5 |
class EndpointHandler:
|
6 |
def __init__(self, path=""):
|
7 |
-
self.pipeline = pipeline("
|
8 |
|
9 |
def __call__(self, data: Dict[str, Any]) -> Dict[str, Any]:
|
10 |
"""
|
|
|
4 |
|
5 |
class EndpointHandler:
|
6 |
def __init__(self, path=""):
|
7 |
+
self.pipeline = pipeline("token-classification", model=path)
|
8 |
|
9 |
def __call__(self, data: Dict[str, Any]) -> Dict[str, Any]:
|
10 |
"""
|