File size: 320 Bytes
fc97f19
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
import streamlit as st
from transformers import pipeline

pipeline = pipeline(task="translation", model="guymorlan/English2Shami")

st.title("English to Levantine Arabic")

text = st.text_input("Enter text to translate:")

if text:
    result = pipeline(text, max_length=1024)
    st.write(result[0]['translation_text'])