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