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