Spaces:
Runtime error
Runtime error
from transformers import pipeline | |
import streamlit as st | |
import pandas as pd | |
from PIL import Image | |
import os | |
# title | |
st.title('Combatting Climate Change Misinformation with Transformers') | |
# section 1: the context, problem; how to address | |
st.markdown("### The Problem 🤔") | |
st.markdown("") | |
# section 2: what is misinformation? how is it combatted now? how successful is this? | |
st.markdown("### More about Misinformation") | |
st.markdown("Misinformation can be defined as “misleading information that is created and spread, regardless of whether there is intent to deceive.” ") | |
misinfo_flowchart = Image.open('images/misinfo_chart.jpeg') | |
st.image(misinfo_flowchart, caption='The misinformation flowchart') | |
# section 3: how can transformers help? | |
# section 4: The process | |
# section 5: my work | |
# section 6: analysis | |
# section 7: conclusion |