Spaces:
Runtime error
Runtime error
Added the references
Browse files
app.py
CHANGED
@@ -49,10 +49,10 @@ st.image(dificult_reading, caption='Reading sessions descriptions.')
|
|
49 |
st.markdown("---")
|
50 |
# section 2: how can transformers help?
|
51 |
st.markdown("### How can Transformers Help?🪄 ")
|
52 |
-
|
53 |
-
st.markdown("**Sentence Similarity**")
|
54 |
-
#st.markdown("* FEVER, or Fact Extraction and VERification, was introduced in 2018 as the first dataset containing {fact, evdience, entailment_label} information. They extracted altering sentences from Wikipedia and had annotators report the relationship between the setences: entailment, contradition, not enough information.")
|
55 |
#st.markdown("* Since then, other researchers have expanded on this area in different domains")
|
|
|
|
|
56 |
#st.markdown("* Here, we use Climate FEVER (3), a similar dataset developed and annotated by ")
|
57 |
|
58 |
#st.markdown("**Fact Verification / Fact-Checking**")
|
@@ -84,6 +84,24 @@ st.markdown("2. Retrieve evidence related to input claim \
|
|
84 |
#st.markdown("* evidence *refutes* (contradicts) claim")
|
85 |
#st.markdown("* evidence *does not provide enough info to support or refute* (neutral) claim")
|
86 |
#st.markdown("For this project, I fine-tune ClimateBERT (4) on the text entailment task")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
87 |
|
88 |
## EXAMPLE ###################################################################################################################
|
89 |
|
@@ -157,4 +175,5 @@ def main():
|
|
157 |
|
158 |
|
159 |
if __name__ == "__main__":
|
160 |
-
main()
|
|
|
|
49 |
st.markdown("---")
|
50 |
# section 2: how can transformers help?
|
51 |
st.markdown("### How can Transformers Help?🪄 ")
|
52 |
+
st.markdown("* Semantic search have shown to improve the accuracy and of the seFEVER, or Fact Extraction and VERification, was introduced in 2018 as the first dataset containing {fact, evdience, entailment_label} information. They extracted altering sentences from Wikipedia and had annotators report the relationship between the setences: entailment, contradition, not enough information.")
|
|
|
|
|
53 |
#st.markdown("* Since then, other researchers have expanded on this area in different domains")
|
54 |
+
st.markdown("**Sentence Similarity**")
|
55 |
+
|
56 |
#st.markdown("* Here, we use Climate FEVER (3), a similar dataset developed and annotated by ")
|
57 |
|
58 |
#st.markdown("**Fact Verification / Fact-Checking**")
|
|
|
84 |
#st.markdown("* evidence *refutes* (contradicts) claim")
|
85 |
#st.markdown("* evidence *does not provide enough info to support or refute* (neutral) claim")
|
86 |
#st.markdown("For this project, I fine-tune ClimateBERT (4) on the text entailment task")
|
87 |
+
st.markdown("---")
|
88 |
+
# section 6: analysis
|
89 |
+
st.markdown("## Critical Analysis")
|
90 |
+
st.markdown("What can be done to improve the accuracy?")
|
91 |
+
st.markdown("* Giving more data to be used to create embeddings, this would improve the model performance.")
|
92 |
+
st.markdown("* A few pretrained Sentence Similarity models could be used and pick the one with higher accuracy and generalize well to new semantics!")
|
93 |
+
st.markdown("* Creating an app that can be multilingual and output the search in users preferred language")
|
94 |
+
|
95 |
+
st.markdown("---")
|
96 |
+
# References + Resource Links
|
97 |
+
st.markdown("## Resource Links")
|
98 |
+
|
99 |
+
st.markdown("### References")
|
100 |
+
#st.markdown("0. My [huggingface model card](https://huggingface.co/amandakonet/climatebert-fact-checking), [adopted Climate FEVER dataset card](https://huggingface.co/datasets/amandakonet/climate_fever_adopted), and [project code on github](https://github.com/amandakonet/climate-change-misinformation)")
|
101 |
+
st.markdown("1. https://www.sbert.net/examples/applications/semantic-search/README.html")
|
102 |
+
st.markdown("2. https://www.sbert.net/docs/pretrained-models/msmarco-v3.html")
|
103 |
+
st.markdown("3. Semantic search [colab](https://colab.research.google.com/drive/12cn5Oo0v3HfQQ8Tv6-ukgxXSmT3zl35A?usp=sharing)")
|
104 |
+
#st.markdown("4. [ClimateBERT](https://climatebert.ai/), [paper](https://arxiv.org/abs/2110.12010)")
|
105 |
|
106 |
## EXAMPLE ###################################################################################################################
|
107 |
|
|
|
175 |
|
176 |
|
177 |
if __name__ == "__main__":
|
178 |
+
main()
|
179 |
+
|