Instructions to use prajwalJumde/rap_phase2_26march_custom with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use prajwalJumde/rap_phase2_26march_custom with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="prajwalJumde/rap_phase2_26march_custom")# Load model directly from transformers import AutoTokenizer, AutoModelForQuestionAnswering tokenizer = AutoTokenizer.from_pretrained("prajwalJumde/rap_phase2_26march_custom") model = AutoModelForQuestionAnswering.from_pretrained("prajwalJumde/rap_phase2_26march_custom", device_map="auto") - Notebooks
- Google Colab
- Kaggle
# Load model directly
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
tokenizer = AutoTokenizer.from_pretrained("prajwalJumde/rap_phase2_26march_custom")
model = AutoModelForQuestionAnswering.from_pretrained("prajwalJumde/rap_phase2_26march_custom", device_map="auto")Quick Links
- Downloads last month
- 6
Model tree for prajwalJumde/rap_phase2_26march_custom
Base model
FacebookAI/xlm-roberta-base
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="prajwalJumde/rap_phase2_26march_custom")