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