File size: 605 Bytes
3b1e043
 
 
 
 
2062749
cd5e868
09cd519
f9f613d
dd3d343
 
 
 
 
f9f613d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
thumbnail: https://huggingface.co/front/thumbnails/google.png
license: apache-2.0
---

# Question Answering model for Hindi and Tamil

This model is part of the ensemble that ranked 4/943 in the [Hindi and Tamil Question Answering](https://www.kaggle.com/c/chaii-hindi-and-tamil-question-answering) competition held by Google Research India at Kaggle.
```
from transformers import AutoTokenizer, AutoModelForQuestionAnswering
  
tokenizer = AutoTokenizer.from_pretrained("Yuchen/muril-large-cased-hita-qa")

model = AutoModelForQuestionAnswering.from_pretrained("Yuchen/muril-large-cased-hita-qa")
```