amandakonet commited on
Commit
57b24ef
1 Parent(s): 93f7dbe
Files changed (2) hide show
  1. app.py +10 -2
  2. images/input_box.gif +0 -0
app.py CHANGED
@@ -28,19 +28,27 @@ st.markdown("**Why does this matter?** Through echo chambers, polarization, and
28
  st.markdown("How is climate change misinformation combatted now? Below are a few of the ways according to the Brookings Institute:")
29
  st.markdown("1. Asking news sources to call out misinformation")
30
  st.markdown("2. Teaching and encouraging media literacy among the public (how to detect fake news, critical evaluation of information provided, etc.")
31
- st.markdown("2. Government ")
32
- st.markdown("3. Fact-checking")
33
  st.markdown("4. Social media platform investment in algorithmic detection of fake news")
34
 
35
  st.markdown("However, many of the proposed solutions above require adoption of behaviors. This is difficult to acheive, particularly among news organizations and social media platforms which receive monetary benefits from misinformation in the form of ad revenue from cite usage and viewership.")
36
 
37
  # section 3: how can transformers help?
 
 
38
  # fever dataset
39
  # entailment/contradiction/neutral adoption to support/refute/n.e.i.
40
  # extention to climate
41
 
42
  # section 4: The process
43
  # this is the pipeline in my notes (u are here highlight)
 
 
 
 
 
 
 
44
 
45
  # section 5: my work
46
 
 
28
  st.markdown("How is climate change misinformation combatted now? Below are a few of the ways according to the Brookings Institute:")
29
  st.markdown("1. Asking news sources to call out misinformation")
30
  st.markdown("2. Teaching and encouraging media literacy among the public (how to detect fake news, critical evaluation of information provided, etc.")
31
+ st.markdown("3. Governments should encourage independent journalism but avoid censoring news")
 
32
  st.markdown("4. Social media platform investment in algorithmic detection of fake news")
33
 
34
  st.markdown("However, many of the proposed solutions above require adoption of behaviors. This is difficult to acheive, particularly among news organizations and social media platforms which receive monetary benefits from misinformation in the form of ad revenue from cite usage and viewership.")
35
 
36
  # section 3: how can transformers help?
37
+ st.markdown("### How can Transformers Help?")
38
+
39
  # fever dataset
40
  # entailment/contradiction/neutral adoption to support/refute/n.e.i.
41
  # extention to climate
42
 
43
  # section 4: The process
44
  # this is the pipeline in my notes (u are here highlight)
45
+ st.markdown("### The Process")
46
+
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)
52
 
53
  # section 5: my work
54
 
images/input_box.gif ADDED