beki commited on
Commit
10551c1
·
1 Parent(s): b772d2f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -60,7 +60,7 @@ st.set_page_config(page_title="Presidio demo (English)", layout="wide")
60
  # Side bar
61
  st.sidebar.markdown(
62
  """
63
- Anonymize PII entities with [presidio](https://aka.ms/presidio), spaCy and a [PHI detection Roberta model](https://huggingface.co/obi/deid_roberta_i2b2).
64
  """
65
  )
66
 
@@ -77,8 +77,8 @@ st_threhsold = st.sidebar.slider(
77
  st_return_decision_process = st.sidebar.checkbox("Add analysis explanations in json")
78
 
79
  st.sidebar.info(
80
- "Presidio is an open source framework for PII detection and anonymization. "
81
- "For more info visit [aka.ms/presidio](https://aka.ms/presidio)"
82
  )
83
 
84
 
 
60
  # Side bar
61
  st.sidebar.markdown(
62
  """
63
+ Anonymize PII entities in with [presidio](https://aka.ms/presidio), spaCy and a [PII protocol trace detection model](https://huggingface.co/beki/flair-ner-debug-english) trained on data generated by [privy](https://github.com/pixie-io/pixie/tree/main/src/datagen/pii/privy).
64
  """
65
  )
66
 
 
77
  st_return_decision_process = st.sidebar.checkbox("Add analysis explanations in json")
78
 
79
  st.sidebar.info(
80
+ "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)"
81
+ "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)"
82
  )
83
 
84