Question Answering
Transformers
Safetensors
English
distilbert
multiple-choice
neet
biology
exam
bio
Instructions to use Neural-Hacker/NEET_BioBERT with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use Neural-Hacker/NEET_BioBERT with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("question-answering", model="Neural-Hacker/NEET_BioBERT")# Load model directly from transformers import AutoTokenizer, AutoModelForMultipleChoice tokenizer = AutoTokenizer.from_pretrained("Neural-Hacker/NEET_BioBERT") model = AutoModelForMultipleChoice.from_pretrained("Neural-Hacker/NEET_BioBERT") - Notebooks
- Google Colab
- Kaggle