classify-intent / components /pipeline_preparer.py
aman-s-affinsys's picture
feat: added all the files
a6bbf63
raw
history blame
334 Bytes
from transformers import TextClassificationPipeline
class PipelinePreparer:
@staticmethod
def prepare_pipeline(tokenizer, model):
"""Create text classification pipeline"""
return TextClassificationPipeline(
tokenizer=tokenizer,
model=model,
return_all_scores=True
)