Commit
·
6fe6b9e
1
Parent(s):
08cbeb7
veriage
Browse files
app.py
CHANGED
@@ -9,13 +9,24 @@ import pandas as pd
|
|
9 |
st.title("Keyword Cosine Similarity Tool")
|
10 |
|
11 |
# Overview
|
12 |
-
st.header("How to Use This Tool")
|
13 |
st.markdown(
|
14 |
"""
|
15 |
-
**Purpose:**
|
|
|
16 |
---
|
17 |
Have you ever had to review a long list of queries to determine whether they were 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.
|
18 |
The resulting table is an ordered list of your comparison keywords based on the cosine similarity of each query's embeddings.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
"""
|
20 |
)
|
21 |
|
|
|
9 |
st.title("Keyword Cosine Similarity Tool")
|
10 |
|
11 |
# Overview
|
|
|
12 |
st.markdown(
|
13 |
"""
|
14 |
+
**Purpose:**
|
15 |
+
Quickly remove irrelevant keywords from your keyword research and move to the next step in your optimization!
|
16 |
---
|
17 |
Have you ever had to review a long list of queries to determine whether they were 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.
|
18 |
The resulting table is an ordered list of your comparison keywords based on the cosine similarity of each query's embeddings.
|
19 |
+
---
|
20 |
+
**Instructions:**
|
21 |
+
1. Enter your **Primary Keyword** in the input field.
|
22 |
+
2. Provide a list of **Keywords to Compare** (separated by new lines or commas).
|
23 |
+
3. Select an **Embedding Model** to compute keyword embeddings.
|
24 |
+
4. If using OpenAI embeddings, input your **API Key**.
|
25 |
+
5. Click **Calculate Similarities** to compute and rank your keywords by relevance.
|
26 |
+
|
27 |
+
**Output:**
|
28 |
+
- A sorted table of your comparison keywords based on their cosine similarity to your primary keyword.
|
29 |
+
- Option to download the results as a CSV file.
|
30 |
"""
|
31 |
)
|
32 |
|