DeepikaChatGPT Q&A Model
A tiny GPT2-style transformer fine-tuned for question answering.
Built by Chaitanya for recruiter-facing demos.
Usage
from transformers import pipeline
qa = pipeline("question-answering", model="your-username/deepikachatgpt")
qa({"context": "Deepika is a data scientist.", "question": "Who is Deepika?"})
---
### 🧪 Step 6: Test Your Model
Try loading it from Hugging Face:
```python
from transformers import pipeline
qa = pipeline("question-answering", model="your-username/deepikachatgpt")
qa({"context": "Deepika is a data scientist.", "question": "Who is Deepika?"})