Update app.py
Browse files
app.py
CHANGED
@@ -6,8 +6,8 @@ from ast import literal_eval
|
|
6 |
|
7 |
|
8 |
st.title("Mining Potential Legitimate Domains from a Typosquatted Domain")
|
9 |
-
model_choice = st.selectbox("Select the embedding model:", ["", "Embedder-typosquat-detect-Canine", "Embedder-typosquat-detect"], index=0)
|
10 |
-
|
11 |
if model_choice:
|
12 |
model = SentenceTransformer(f"./{model_choice}")
|
13 |
|
|
|
6 |
|
7 |
|
8 |
st.title("Mining Potential Legitimate Domains from a Typosquatted Domain")
|
9 |
+
# model_choice = st.selectbox("Select the embedding model:", ["", "Embedder-typosquat-detect-Canine", "Embedder-typosquat-detect"], index=0)
|
10 |
+
model_choice= "Embedder-typosquat-detect-Canine"
|
11 |
if model_choice:
|
12 |
model = SentenceTransformer(f"./{model_choice}")
|
13 |
|