anvilogic-mikehart commited on
Commit
a14f06c
·
1 Parent(s): 3b4763b

Fixing language

Browse files
Files changed (1) hide show
  1. app.py +7 -4
app.py CHANGED
@@ -9,12 +9,15 @@ model_choice = "Embedder-typosquat-detect-Canine"
9
 
10
  @st.cache_resource
11
  def load_model() -> SentenceTransformer:
12
- print("Loading model")
13
  return SentenceTransformer(f"./{model_choice}")
14
 
15
- st.title("Search for the target of typosquat domains")
16
- st.text("This streamlit demonstrates how you can use our domain embedder to find the targets of typosquatted domains. "
17
- "Each domain is represented as an vector embedding that can be stored in a vector store for efficient retrieval. ")
 
 
 
 
18
 
19
  model = load_model()
20
 
 
9
 
10
  @st.cache_resource
11
  def load_model() -> SentenceTransformer:
 
12
  return SentenceTransformer(f"./{model_choice}")
13
 
14
+ st.title("Search for the target of typosquat domains with our Domain Embedder")
15
+ st.markdown("This streamlit demonstrates how you can use our domain embedder to find the targets of typosquatted domains. "
16
+ "Each domain is represented as an vector embedding that can be stored in a vector store for efficient retrieval. "
17
+ "The domains you can search for in this application are the top 4k most popular domains, like `google.com`. "
18
+ "You can use the domain embedder to create a vector store specifically for the websites **you want to monitor**. "
19
+ "This can include the services your company uses like Office365, or the websites of your company that may "
20
+ "become spear phishing targets.")
21
 
22
  model = load_model()
23