Spaces:
Sleeping
Sleeping
paper_id string
Browse files
app.py
CHANGED
@@ -443,7 +443,7 @@ if user_input:
|
|
443 |
|
444 |
st.title(f'Review feedback')
|
445 |
|
446 |
-
if annotations['submission_id'].str.contains(paper_id).any():
|
447 |
st.write(f'We have a human annotation for {paper_id}')
|
448 |
# Create four columns
|
449 |
col1, col2, col3, col4 = st.columns(4)
|
|
|
443 |
|
444 |
st.title(f'Review feedback')
|
445 |
|
446 |
+
if annotations['submission_id'].str.contains(str(paper_id)).any():
|
447 |
st.write(f'We have a human annotation for {paper_id}')
|
448 |
# Create four columns
|
449 |
col1, col2, col3, col4 = st.columns(4)
|