YasaswiniCh commited on
Commit
6aa98a8
·
verified ·
1 Parent(s): 9ad74d6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -2,7 +2,7 @@ import streamlit as st
2
  from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
3
 
4
  # Load your trained model and tokenizer from Hugging Face
5
- model_name = "ENGLISH TO TELUGU"
6
  tokenizer = AutoTokenizer.from_pretrained(model_name)
7
  model = AutoModelForSeq2SeqLM.from_pretrained(model_name)
8
 
 
2
  from transformers import AutoTokenizer, AutoModelForSeq2SeqLM
3
 
4
  # Load your trained model and tokenizer from Hugging Face
5
+ model_name = "ai4bharat/IndicTrans"
6
  tokenizer = AutoTokenizer.from_pretrained(model_name)
7
  model = AutoModelForSeq2SeqLM.from_pretrained(model_name)
8