Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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(
|
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 |
|