Earlier quoted context omitted.
What about building machine learning models that make predictions on said data? Can't just test on fake data.
This isn't my area of expertise, but I've spoken to computer vision researchers who apparently use generated data for training models for self-driving vehicle autonomy. Maybe they only use generated data for the train set and then do cross-validation on real data? I'd like to hear them chime in on this thread if any are reading here. Theoretically speaking if the generated data has the same distribution and parameter…
Amnesia – High-Accuracy Data Anonymization
51–60 of 99 posts
Re: Amnesia – High-Accuracy Data Anonymization
#52For data to be anonymous under GDPR, it is not enough that individuals cannot be identified from the anonymized data set. If individuals can be identified when the anonymous data set is compared with the source data set, the anonymized data is not "anonymous". For data to be truly anonymous under GDPR. there must be no other additional data that would allow for reidentification. If there is any other data that, when…
https://en.wikipedia.org/wiki/K-anonymity#Methods_for_k-anon...
Re: Amnesia – High-Accuracy Data Anonymization
#53Fair warning: anonymization is a hard problem. It is never easy, and you'd be surprised how many bits can leak out of what you thought was properly anonymized data. If you are using data for test purposes please use generated data, not anonymized data. This has the additional advantage that there is no potential path for live data to end up on a developers machine. added in edit: And also realize that just using a se…
Re: Amnesia – High-Accuracy Data Anonymization
#54Insensitive name to people actually suffering from amnesia, (me).
Re: Amnesia – High-Accuracy Data Anonymization
#55For data to be anonymous under GDPR, it is not enough that individuals cannot be identified from the anonymized data set. If individuals can be identified when the anonymous data set is compared with the source data set, the anonymized data is not "anonymous". For data to be truly anonymous under GDPR. there must be no other additional data that would allow for reidentification. If there is any other data that, when…
In my experience, this is a question of interpretation (see e.g. Recital 26 and the question of what is "reasonably likely"). You can ask ten different experts, and you will get ten different opinions. Unfortunately, many aspects of the GDPR are interpreted very heterogeneously, both in individual countries and by different supervisory authorities within the countries themselves. For this reason, it is essential that…
edit: https://msrbcel.files.wordpress.com/2020/11/adf-2nd-edition-...
Re: Amnesia – High-Accuracy Data Anonymization
#56Use synthetic data instead? https://tonic.ai/
Also with synthetic data, there is an inherent trade-off between privacy risks and the usefulness of the data produced. However, this trade-off can be of a different nature, resulting in advantages for synthetization, for example when protecting high-dimensional data.
Re: Amnesia – High-Accuracy Data Anonymization
#57Earlier quoted context omitted.
In my experience, this is a question of interpretation (see e.g. Recital 26 and the question of what is "reasonably likely"). You can ask ten different experts, and you will get ten different opinions. Unfortunately, many aspects of the GDPR are interpreted very heterogeneously, both in individual countries and by different supervisory authorities within the countries themselves. For this reason, it is essential that…
> In my experience, this is a question of interpretation (see e.g. Recital 26 and the question of what is "reasonably likely"). This is absolutely true. The hard part is that was it "reasonably likely" changes as technology changes. It's entirely possible that a data set that qualifies as anonymous today will not be anonymous in 5 years. Organizations are responsible for the data they publish. If data loses its anony…
Re: Amnesia – High-Accuracy Data Anonymization
#58Earlier quoted context omitted.
In my experience, this is a question of interpretation (see e.g. Recital 26 and the question of what is "reasonably likely"). You can ask ten different experts, and you will get ten different opinions. Unfortunately, many aspects of the GDPR are interpreted very heterogeneously, both in individual countries and by different supervisory authorities within the countries themselves. For this reason, it is essential that…
Also this interpretation would completely block any sharing within the pharmaceutical field, where the original data is required by law to be kept for a minimum of 25 years. I personally like the definitions from UKAN, which talk about anonymous data as relating to data environments. edit: https://msrbcel.files.wordpress.com/2020/11/adf-2nd-edition-...
Re: Amnesia – High-Accuracy Data Anonymization
#59Do these methods provide any guarantees or is it assumed that a human reviews the output to verify that it was properly anonymized?
> Data anonymized with Amnesia are statistically guaranteed that they cannot be linked to the original data. It looks like (from other text on their site) they use variants on k-anonymity. This can prevent re-linking attacks back to the original data, but we've also known for a decade that this isn't especially strong. For example, two independent k-anonymous releases can unique identify everyone in the dataset[0]. […