Transformers How to use cassandra-themis/test_tcp_ca with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("token-classification", model="cassandra-themis/test_tcp_ca") # Load model directly
from transformers import AutoTokenizer, AutoModelForTokenClassification
tokenizer = AutoTokenizer.from_pretrained("cassandra-themis/test_tcp_ca")
model = AutoModelForTokenClassification.from_pretrained("cassandra-themis/test_tcp_ca")