register pipeline
Browse files- register.py +16 -0
register.py
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from transformers import AutoModel, AutoTokenizer, pipeline
|
2 |
+
from transformers.pipelines import PIPELINE_REGISTRY
|
3 |
+
|
4 |
+
from hive_token_classification import HiveTokenClassification
|
5 |
+
|
6 |
+
|
7 |
+
PIPELINE_REGISTRY.register_pipeline(
|
8 |
+
"hive-token-classification",
|
9 |
+
pipeline_class=HiveTokenClassification,
|
10 |
+
pt_model=AutoModel
|
11 |
+
)
|
12 |
+
|
13 |
+
pipe = pipeline(task='hive-token-classification', model='Hiveurban/dictabert-large-parse', trust_remote_code=True)
|
14 |
+
print(pipe(["ืืฉื ืช 1948 ืืฉืืื ืืคืจืื ืงืืฉืื ืืช ืืืืืืื ืืคืืกืื ืืชืืช ืืืชืืืืืช ืืืื ืืช ืืืื ืืคืจืกื ืืืืจืื ืืืืืจืืกืืืื"]))
|
15 |
+
|
16 |
+
pipe.push_to_hub('hive-token-classification')
|