Transformers How to use Norah-K/PDPL_CAMeLBERT with Transformers:
# Use a pipeline as a high-level helper
from transformers import pipeline
pipe = pipeline("text-classification", model="Norah-K/PDPL_CAMeLBERT") # Load model directly
from transformers import AutoTokenizer, AutoModelForSequenceClassification
tokenizer = AutoTokenizer.from_pretrained("Norah-K/PDPL_CAMeLBERT")
model = AutoModelForSequenceClassification.from_pretrained("Norah-K/PDPL_CAMeLBERT")