tan-ta / README.md
Deepakvictor's picture
Update README.md (#2)
10ea423
metadata
license: creativeml-openrail-m
language:
  - ta
  - en
pipeline_tag: translation
widget:
  - text: Thalaivaru nirantharam
inference:
  parameters:
    src_lang: en
    tgt_lang: ta

Model Card for Deepakvictor/tan-ta

This model is Finetuned on Facebook's m2m model to convert Tanglish words to Tamil

Model Details

Model is finetuned on facebook/m2m100_418M m2m100_418m page --> https://huggingface.co/facebook/m2m100_418M

Model Description

Model Sources

  • Repository: [Need to be uploaded]
  • Demo [optional]: [Need to be uploaded]

How to Get Started with the Model

Use the code below to get started with the model.

# Load model directly from transformers library
from transformers import AutoTokenizer, AutoModelForSeq2SeqLM

tokenizer = AutoTokenizer.from_pretrained("Deepakvictor/tan-ta")
model = AutoModelForSeq2SeqLM.from_pretrained("Deepakvictor/tan-ta")

#pass the input 
inp = tokenizer("Thalaivaru nirantharam",return_tensors="pt")
out= model.generate(**inp)
tokenizer.batch_decode(out,skip_special_tokens=True)
#['தலைவரு நிரந்தரம்']

Repo code --> github.com/devic1 🖤