I am observing the following (strange) behavior when using pipeline from the transformers library and transformer-interpret:
text = "Now Accord networks is a company in video, and he led the sales team, and the marketing group at Accord, and he took it from start up, sound familiar, it's from start up to $60 million company in two years."
classifier = pipeline('text-classification', model=model, tokenizer=tokenizer, device=0)
classifier(text)
Hi there,
I am observing the following (strange) behavior when using
pipeline
from thetransformers
library andtransformer-interpret
:while
transformer-interpret
gives me slightly different scores:In both cases I apply the exact same
model
andtokenizer
...I am grateful for any hint and/or advice! 🤗