Instructions to use Nonegom/roberta_curriculum_learn with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Nonegom/roberta_curriculum_learn with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="Nonegom/roberta_curriculum_learn")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("Nonegom/roberta_curriculum_learn") model = AutoModelForQuestionAnswering.from_pretrained("Nonegom/roberta_curriculum_learn") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("Nonegom/roberta_curriculum_learn")
model = AutoModelForQuestionAnswering.from_pretrained("Nonegom/roberta_curriculum_learn")Quick Links
No model card
- Downloads last month
- 15
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="Nonegom/roberta_curriculum_learn")