English-to-Telugu Translation Model πŸ†

πŸ“Œ Model Overview

This is a Neural Machine Translation (NMT) model trained to translate English sentences into Telugu using Transformer-based architectures.

  • βœ… Handles complex sentence structures
  • βœ… Supports general & conversational language
  • βœ… Fine-tuned on English-Telugu parallel corpora

πŸ“– How to Use the Model

You can load this model using Hugging Face Transformers:

from transformers import AutoModelForSeq2SeqLM, AutoTokenizer

model_name = "hima06varshini/english-to-telugu-translation"
token = "YOUR_ACCESS_TOKEN"  # Replace with your Hugging Face token if required

# Load Model & Tokenizer
model = AutoModelForSeq2SeqLM.from_pretrained(model_name, token=token)
tokenizer = AutoTokenizer.from_pretrained(model_name, token=token)

def translate(text):
    inputs = tokenizer(text, return_tensors="pt")
    outputs = model.generate(**inputs)
    return tokenizer.decode(outputs[0], skip_special_tokens=True)

# Example Translation
text = "Hello, how are you?"
print(translate(text))
Downloads last month
13
Inference Providers NEW
This model isn't deployed by any Inference Provider. πŸ™‹ Ask for provider support

Dataset used to train hima06varshini/TeluguTranslatica