Spaces:
Runtime error
Runtime error
amandakonet
commited on
Commit
•
b840fea
1
Parent(s):
985935c
try model
Browse files
app.py
CHANGED
@@ -186,11 +186,9 @@ st.write('You selected:', option_claim)
|
|
186 |
filtered_df = ex_df[ex_df['claim'] == option_claim]
|
187 |
|
188 |
# select evidence
|
189 |
-
option_evidence = st.selectbox('Select
|
190 |
st.write('You selected:', option_evidence)
|
191 |
|
192 |
-
st.write(type(option))
|
193 |
-
|
194 |
st.markdown("Now, we can use your selected (claim,evidence) pair in the fine-tuned transformer!")
|
195 |
|
196 |
|
|
|
186 |
filtered_df = ex_df[ex_df['claim'] == option_claim]
|
187 |
|
188 |
# select evidence
|
189 |
+
option_evidence = st.selectbox('Select evidence to test', filtered_df['evidence'].unique())
|
190 |
st.write('You selected:', option_evidence)
|
191 |
|
|
|
|
|
192 |
st.markdown("Now, we can use your selected (claim,evidence) pair in the fine-tuned transformer!")
|
193 |
|
194 |
|