repleeka commited on
Commit
d3d82b8
·
verified ·
1 Parent(s): 6358060

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
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
- # Initialize the pipeline for translation
25
  translation_pipeline = pipeline(
26
- task="translation_en_to_tagin", # Adjust task if needed
27
- model=model_directory,
28
- tokenizer=model_directory,
29
- device=0 # Use GPU (if available)
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