Spaces:
Runtime error
Runtime error
added emoji icons
Browse files
app.py
CHANGED
|
@@ -25,13 +25,13 @@ from urllib.error import URLError
|
|
| 25 |
# set up title and sidebar
|
| 26 |
st.title (" Nashville Analytics Summit Conference Helper")# (" Your top 3 Important Sessions")
|
| 27 |
|
| 28 |
-
st.markdown("**Problem**
|
| 29 |
st.markdown("Since its inception in 2013, Nashville Analytics Summit has seen a growth of over 488%. The Summit prides its itself as the fastest growing locally grown tech events in the south region. With an increasing number of participants and dozens of talks covering a myriad of topics, there is a need to tailor participants needs to their interests")
|
| 30 |
st.markdown("---")
|
| 31 |
st.markdown("**Solution**💡:" )
|
| 32 |
st.markdown("Develop an application in which users can input the description of areas of interest and app returns the top three Sessions matching the description requested.")
|
| 33 |
st.markdown("---")
|
| 34 |
-
st.markdown("** Approach**
|
| 35 |
st.markdown("* For the approach, I used a transformer model, multi-qa-MiniLM-L6-cos-v1, that uses sentence similarity to match the description of the event and the input description.")
|
| 36 |
st.markdown("* The dataset used is Nashville Analytics Summit descriptions of the presentations, which include the Unique ID, Name of presenter, Description of presentation, Activity Code, Start Time, End Time, Location Name")
|
| 37 |
|
|
@@ -48,7 +48,7 @@ st.image(dificult_reading, caption='Reading sessions descriptions.')
|
|
| 48 |
|
| 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.")
|
|
@@ -62,7 +62,7 @@ st.markdown("**Sentence Similarity**")
|
|
| 62 |
st.markdown("---")
|
| 63 |
# section 4: The process
|
| 64 |
# this is the pipeline in my notes (u are here highlight)
|
| 65 |
-
st.markdown("### The Process
|
| 66 |
|
| 67 |
#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?")
|
| 68 |
|
|
|
|
| 25 |
# set up title and sidebar
|
| 26 |
st.title (" Nashville Analytics Summit Conference Helper")# (" Your top 3 Important Sessions")
|
| 27 |
|
| 28 |
+
st.markdown("**Problem** 🧐:")
|
| 29 |
st.markdown("Since its inception in 2013, Nashville Analytics Summit has seen a growth of over 488%. The Summit prides its itself as the fastest growing locally grown tech events in the south region. With an increasing number of participants and dozens of talks covering a myriad of topics, there is a need to tailor participants needs to their interests")
|
| 30 |
st.markdown("---")
|
| 31 |
st.markdown("**Solution**💡:" )
|
| 32 |
st.markdown("Develop an application in which users can input the description of areas of interest and app returns the top three Sessions matching the description requested.")
|
| 33 |
st.markdown("---")
|
| 34 |
+
st.markdown("** Approach**🗝️ :")
|
| 35 |
st.markdown("* For the approach, I used a transformer model, multi-qa-MiniLM-L6-cos-v1, that uses sentence similarity to match the description of the event and the input description.")
|
| 36 |
st.markdown("* The dataset used is Nashville Analytics Summit descriptions of the presentations, which include the Unique ID, Name of presenter, Description of presentation, Activity Code, Start Time, End Time, Location Name")
|
| 37 |
|
|
|
|
| 48 |
|
| 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.")
|
|
|
|
| 62 |
st.markdown("---")
|
| 63 |
# section 4: The process
|
| 64 |
# this is the pipeline in my notes (u are here highlight)
|
| 65 |
+
st.markdown("### The Process 🔍")
|
| 66 |
|
| 67 |
#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?")
|
| 68 |
|