Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
42 |
-
placeholder="What does the
|
43 |
-
text2= st.text_area(label= "Please write the
|
44 |
-
placeholder="What does the
|
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 |
|