Steven Zhang commited on
Commit
46ae4cd
1 Parent(s): cbe1a65
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -1,6 +1,6 @@
1
  # have to run this locally as streamlit run app.py
2
  import streamlit as st
3
- from translation_test import *
4
  st.title("Translation model test")
5
  input_sentence = st.text_input("Enter input sentence:")
6
  if input_sentence is not None and len(input_sentence) > 0:
 
1
  # have to run this locally as streamlit run app.py
2
  import streamlit as st
3
+ from TestTranslation.translation_test import *
4
  st.title("Translation model test")
5
  input_sentence = st.text_input("Enter input sentence:")
6
  if input_sentence is not None and len(input_sentence) > 0: