Difference between revisions of "Anonymization"

From Pangeanic
Jump to navigation Jump to search
Line 22: Line 22:


==Rules==
==Rules==
Rules are ''Regular Expressions'' that can be defined in order to detect patterns. The syntax for Rules is [https://en.wikipedia.org/wiki/Regular_expression Regex]
Rules are ''Regular Expressions'' that can be defined in order to detect patterns. The syntax for Rules is [https://en.wikipedia.org/wiki/Regular_expression Regex].
 
Like ''Anon Dictionaries'' rules are associated to an existing or new Entity Type.
 
Rules are mostly used to detect sequences of numbers and characters that identify persons or objects such as:
* Driving license
* The number of employee in an organization
* A expedient identifying code
* A Bank account number

Revision as of 07:09, 21 April 2022

Pangeanic Anonymization Solution (PAS) is based in the use of Neural Networks (NN). Those Networks ingest text and output annotated text identifying the multiple entities found, for instance person names, addresses...

But Neural Networks only work as they have been taught during the training, and that means that will not be able to identify new entities or to adapt to specific usage cases.

To solve the problem PAS uses two techniques that will refine the identification performance:

  • Dictionaries
  • Rules

Anonymization Dictionaries

The simplest way to help the NN to identify an entity is to have that entity name declared in a Dictionary. We call these Dictionaries Anon Dictionaries as they list texts that can be anonymized.

Imagine you work for a hospital and you want to be sure the NN will detect and anonymize any Doctor name appearing in the documents you want to anonymize, you may create a Anon Dictionary called the DoctorsList that simply contains the names in different lines of a plan text file and use it when you are anonymizing.

An Anon Dictionary is linked to an entity type, for instance our Doctors List can be linked to the type PER (Person Name) or we can create a new Entity Type called DOCTOR and assign those names to DOCTOR type.

Clear Dictionaries

There are a second type of dictionaries the Clear Dictionaries that can be defined to force the system to avoid identification and anonymization.

Imagine you work for a hospital and you want to be sure the NN will 'NOT detect and anonymize any Doctor name appearing in the documents you want to anonymize. You are interested in this case to anonymize only patients' names. You may create a Clear Dictionary called the DoctorsList that simply contains the names in different lines of a plan text file and use it when you are anonymizing.

Rules

Rules are Regular Expressions that can be defined in order to detect patterns. The syntax for Rules is Regex.

Like Anon Dictionaries rules are associated to an existing or new Entity Type.

Rules are mostly used to detect sequences of numbers and characters that identify persons or objects such as:

  • Driving license
  • The number of employee in an organization
  • A expedient identifying code
  • A Bank account number