themeetjani commited on
Commit
b833c66
·
verified ·
1 Parent(s): d8fbbc5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -4
app.py CHANGED
@@ -38,10 +38,10 @@ if 'result' not in session_state:
38
  session_state['result']= ""
39
 
40
  st.title("Auto score")
41
- text1= st.text_area(label= "Please write the text bellow",
42
- placeholder="What does the tweet say?")
43
- text2= st.text_area(label= "Please write the text bellow",
44
- placeholder="What does the tweet say?")
45
  def classify(text):
46
  session_state['result'] = score(text1,text2)
47
 
 
38
  session_state['result']= ""
39
 
40
  st.title("Auto score")
41
+ text1= st.text_area(label= "Please write the model answer bellow",
42
+ placeholder="What does the teacher say?")
43
+ text2= st.text_area(label= "Please write the student answer bellow",
44
+ placeholder="What does the student say?")
45
  def classify(text):
46
  session_state['result'] = score(text1,text2)
47