themeetjani commited on
Commit
9ac60a1
·
verified ·
1 Parent(s): 262f111

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -42,7 +42,7 @@ 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
 
48
 
 
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(text1,text2):
46
  session_state['result'] = score(text1,text2)
47
 
48