Commit
·
0e965c1
1
Parent(s):
d14b366
Added instructions.
Browse files
app.py
CHANGED
@@ -8,6 +8,18 @@ import pandas as pd
|
|
8 |
# App title
|
9 |
st.title("Keyword Cosine Similarity Tool")
|
10 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
11 |
# Inputs
|
12 |
st.header("Input Parameters")
|
13 |
primary_keyword = st.text_input("Primary Keyword", placeholder="Enter your primary keyword")
|
@@ -91,3 +103,4 @@ if st.button("Calculate Similarities"):
|
|
91 |
# Footer
|
92 |
st.markdown("---")
|
93 |
st.markdown("Created by [Ryland Bacorn](https://huggingface.co/ReithBjarkan)")
|
|
|
|
8 |
# App title
|
9 |
st.title("Keyword Cosine Similarity Tool")
|
10 |
|
11 |
+
# Overview
|
12 |
+
st.header("How to Use This Tool")
|
13 |
+
st.markdown(
|
14 |
+
"""
|
15 |
+
Ever have to review a long list of queries to determine if they were even relevant to your target keyword? This Space aims to automate that process by entering your primary keyword and a list of related queries from any source you might do keyword research.
|
16 |
+
|
17 |
+
The result is an ordered list of your comparison keywords based on the cosine similarity of the embeddings of each query.
|
18 |
+
|
19 |
+
-- Quickly remove irrelevant keywords from your keyword research and move to the next step in your optimization!
|
20 |
+
"""
|
21 |
+
)
|
22 |
+
|
23 |
# Inputs
|
24 |
st.header("Input Parameters")
|
25 |
primary_keyword = st.text_input("Primary Keyword", placeholder="Enter your primary keyword")
|
|
|
103 |
# Footer
|
104 |
st.markdown("---")
|
105 |
st.markdown("Created by [Ryland Bacorn](https://huggingface.co/ReithBjarkan)")
|
106 |
+
st.markdown("[Report a bug or make a suggestion](mailto:rybacorn[at]gmail[dot]com?subject=Keyword%20Cosine%20Similarity%20Tool%20Bug/Feedback)")
|