beki commited on
Commit
8855b6e
1 Parent(s): cbd5f7a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -79,7 +79,7 @@ st.set_page_config(page_title="Presidio demo (English)", layout="wide")
79
  # Side bar
80
  st.sidebar.markdown(
81
  """
82
- Anonymize PII entities in text with [presidio](https://aka.ms/presidio), spaCy and a [PII detection model](https://huggingface.co/beki/flair-pii-english) trained on protocol trace data generated by [privy](https://github.com/pixie-io/pixie/tree/main/src/datagen/pii/privy).
83
  """
84
  )
85
 
@@ -96,7 +96,7 @@ st_threshold = st.sidebar.slider(
96
  st_return_decision_process = st.sidebar.checkbox("Add analysis explanations in json")
97
 
98
  st.sidebar.info(
99
- "Presidio is an open source framework for PII detection and anonymization. Privy is an open source framework for synthetic data generation in protocol trace formats (json, sql, html etc)"
100
  "For more info visit [aka.ms/presidio](https://aka.ms/presidio) and [privy](https://github.com/pixie-io/pixie/tree/main/src/datagen/pii/privy)"
101
  )
102
 
 
79
  # Side bar
80
  st.sidebar.markdown(
81
  """
82
+ Detect and anonymize PII entities in text with a [PII detection model](https://huggingface.co/beki/flair-pii-english) trained on protocol trace data generated by [privy](https://github.com/pixie-io/pixie/tree/main/src/datagen/pii/privy) and [presidio](https://aka.ms/presidio).
83
  """
84
  )
85
 
 
96
  st_return_decision_process = st.sidebar.checkbox("Add analysis explanations in json")
97
 
98
  st.sidebar.info(
99
+ "Privy is an open source framework for synthetic data generation in protocol trace formats (json, sql, html etc). Presidio is an open source framework for PII detection and anonymization. "
100
  "For more info visit [aka.ms/presidio](https://aka.ms/presidio) and [privy](https://github.com/pixie-io/pixie/tree/main/src/datagen/pii/privy)"
101
  )
102