How to use bowphs/depenBERTa_perseus with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("token-classification", model="bowphs/depenBERTa_perseus", trust_remote_code=True)
# Load model directly from transformers import AutoTokenizer, AutoModelForTokenClassification tokenizer = AutoTokenizer.from_pretrained("bowphs/depenBERTa_perseus", trust_remote_code=True) model = AutoModelForTokenClassification.from_pretrained("bowphs/depenBERTa_perseus", trust_remote_code=True)
The community tab is the place to discuss and collaborate with the HF community!