Zekun Wu
commited on
Commit
·
171bf3d
1
Parent(s):
174278e
update
Browse files
app.py
CHANGED
@@ -39,19 +39,30 @@ if not st.session_state.get('password_correct', False):
|
|
39 |
else:
|
40 |
model_name = st.selectbox('Select a model:', ['gpt4-1106', 'gpt35-1106'])
|
41 |
|
42 |
-
#
|
43 |
-
|
44 |
-
example = examples[example_type]
|
45 |
|
46 |
-
|
47 |
-
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
-
|
50 |
-
st.write(
|
|
|
|
|
|
|
|
|
51 |
|
52 |
if st.button('Evaluate Explanation'):
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
|
|
|
|
|
|
|
|
39 |
else:
|
40 |
model_name = st.selectbox('Select a model:', ['gpt4-1106', 'gpt35-1106'])
|
41 |
|
42 |
+
# User choice between predefined examples or their own input
|
43 |
+
input_type = st.radio("Choose input type:", ('Use predefined example', 'Enter your own'))
|
|
|
44 |
|
45 |
+
if input_type == 'Use predefined example':
|
46 |
+
example_type = st.radio("Select an example type:", ('good', 'bad'))
|
47 |
+
question = examples[example_type]['question']
|
48 |
+
explanation = examples[example_type]['explanation']
|
49 |
+
else:
|
50 |
+
question = st.text_input('Enter your question:', '')
|
51 |
+
explanation = st.text_input('Enter your explanation:', '')
|
52 |
|
53 |
+
# Display the selected or entered question and explanation
|
54 |
+
st.write('### Question')
|
55 |
+
st.write(question if question else 'No question entered yet.')
|
56 |
+
|
57 |
+
st.write('### Explanation')
|
58 |
+
st.write(explanation if explanation else 'No explanation entered yet.')
|
59 |
|
60 |
if st.button('Evaluate Explanation'):
|
61 |
+
if question and explanation:
|
62 |
+
eval = evaluator(model_name)
|
63 |
+
scores = eval(question, explanation)
|
64 |
+
st.write('### Scores')
|
65 |
+
for principle, score in scores.items():
|
66 |
+
st.write(f"{principle}: {score}")
|
67 |
+
else:
|
68 |
+
st.error('Please enter both a question and an explanation to evaluate.')
|