File size: 915 Bytes
a9f81e5 7ab934c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
---
license: afl-3.0
datasets:
- WillHeld/hinglish_top
language:
- en
- hi
metrics:
- accuracy
library_name: transformers
pipeline_tag: fill-mask
---
### SRDberta
This is a BERT model trained for Masked Language Modeling for Higlish Data.
Hinglish is a term used to describe the hybrid language spoken in India, which combines elements of Hindi and English. It is commonly used in informal conversations and in media such as Bollywood films
### Inference
```
from transformers import AutoTokenizer, AutoModelForMaskedLM, pipeline
tokenizer = AutoTokenizer.from_pretrained("SRDdev/SRDBerta")
model = AutoModelForMaskedLM.from_pretrained("SRDdev/SRDBerta")
fill = pipeline('fill-mask', model='SRDberta', tokenizer='SRDberta')
```
```
fill_mask = fill.tokenizer.mask_token
fill(f'Aap {fill_mask} ho?')
```
### Citation
Author: @[SRDdev](https://huggingface.co/SRDdev)
```
framework : Pytorch
Year: Jan 2023
``` |