Instructions to use etadevosyan/did_the_doctor_say_hello_bert_First128 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use etadevosyan/did_the_doctor_say_hello_bert_First128 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="etadevosyan/did_the_doctor_say_hello_bert_First128")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("etadevosyan/did_the_doctor_say_hello_bert_First128") model = AutoModelForSequenceClassification.from_pretrained("etadevosyan/did_the_doctor_say_hello_bert_First128", device_map="auto") - Notebooks
- Google Colab
- Kaggle