themeetjani commited on
Commit
2bb6554
·
verified ·
1 Parent(s): 9ac60a1

Update pages/Our_model.py

Browse files
Files changed (1) hide show
  1. pages/Our_model.py +1 -1
pages/Our_model.py CHANGED
@@ -61,7 +61,7 @@ text1= st.text_area(label= "Please write the model answer bellow",
61
  placeholder="What does the teacher say?")
62
  text2= st.text_area(label= "Please write the student answer bellow",
63
  placeholder="What does the student say?")
64
- def classify(text):
65
  session_state['result'] = main_score(text1,text2)
66
 
67
 
 
61
  placeholder="What does the teacher say?")
62
  text2= st.text_area(label= "Please write the student answer bellow",
63
  placeholder="What does the student say?")
64
+ def classify(text1,text2):
65
  session_state['result'] = main_score(text1,text2)
66
 
67