Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
from transformers import pipeline
|
2 |
from datasets import Dataset
|
3 |
import streamlit as st
|
|
|
4 |
|
5 |
# Set the background color and layout with set_page_config
|
6 |
st.set_page_config(
|
@@ -21,12 +22,12 @@ text_input = st.text_area("Enter English text to translate", height=150, value=s
|
|
21 |
# Define your model from Hugging Face
|
22 |
model_directory = "repleeka/eng-tagin-nmt"
|
23 |
|
24 |
-
|
25 |
translation_pipeline = pipeline(
|
26 |
-
task="
|
27 |
-
model=
|
28 |
-
tokenizer=
|
29 |
-
device=
|
30 |
)
|
31 |
|
32 |
# Translate button
|
|
|
1 |
from transformers import pipeline
|
2 |
from datasets import Dataset
|
3 |
import streamlit as st
|
4 |
+
import torch
|
5 |
|
6 |
# Set the background color and layout with set_page_config
|
7 |
st.set_page_config(
|
|
|
22 |
# Define your model from Hugging Face
|
23 |
model_directory = "repleeka/eng-tagin-nmt"
|
24 |
|
25 |
+
device = 0 if torch.cuda.is_available() else -1
|
26 |
translation_pipeline = pipeline(
|
27 |
+
task="translation",
|
28 |
+
model="repleeka/eng-tagin-nmt",
|
29 |
+
tokenizer="repleeka/eng-tagin-nmt",
|
30 |
+
device=device
|
31 |
)
|
32 |
|
33 |
# Translate button
|