amandakonet commited on
Commit
9832163
β€’
1 Parent(s): fb60829
Files changed (1) hide show
  1. app.py +12 -2
app.py CHANGED
@@ -47,8 +47,18 @@ st.markdown("### The Process")
47
  st.markdown("Imagine: A person is curious about whether a claim they heard about climate change is true. How can transformers help validate or refute the claim?")
48
 
49
  st.markdown("1. User inputs a climate claim")
50
- input_gif = Image.open('images/input_box.gif')
51
- st.image(input_gif, width=10)
 
 
 
 
 
 
 
 
 
 
52
 
53
  # section 5: my work
54
 
 
47
  st.markdown("Imagine: A person is curious about whether a claim they heard about climate change is true. How can transformers help validate or refute the claim?")
48
 
49
  st.markdown("1. User inputs a climate claim")
50
+ #input_gif = Image.open('images/input_box.gif')
51
+ #st.image(input_gif, width=100)
52
+
53
+ st.markdown("2. Retrieve evidence related to input claim")
54
+ st.markdown(" * Similarity between claim and available documents")
55
+ st.markdown(" * For each claim, collect N related documents")
56
+ st.markdown(" * Current area of research: How do we keep the set of curated documents up-to-date? Validate their contents?")
57
+
58
+ st.markdown("3. Send (claim, evidence) pairs to a transformer model. Have the model predict whether each evidence supports, refutes, or is not relevant to the claim. (πŸ“ YOU ARE HERE!)")
59
+
60
+ st.markdown("4. Report back to the user: The supporting evidence for the claim (if any), the refuting evidence for the claim (if any). If no relevant evidence is found, report that the claim cannot be supported or refuted by current evidence.")
61
+
62
 
63
  # section 5: my work
64