How to use Labib11/pmc-uae with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("feature-extraction", model="Labib11/pmc-uae")
# Load model directly from transformers import AutoTokenizer, AutoModel tokenizer = AutoTokenizer.from_pretrained("Labib11/pmc-uae") model = AutoModel.from_pretrained("Labib11/pmc-uae")
How to fix it?