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