OpenMined / PipelineDP

PipelineDP is a Python framework for applying differentially private aggregations to large datasets using batch processing systems such as Apache Spark, Apache Beam, and more.
https://pipelinedp.io/
Apache License 2.0
276 stars 77 forks source link

Find nice datasets and use cases for anonymizating with PipelineDP #34

Open dvadym opened 3 years ago

dvadym commented 3 years ago

This issue for tracking ideas of datasets and usecases of using PipelineDP.

Having datasets/use cases would be helpful for

Some requirements on datasets:

Please add suggestions in comments.

dasmdasm commented 3 years ago

NIST ran a competition last year with the goal of producing differentially private statistics based on a dataset of emergency services calls. As part of that they released a dataset of 911 calls in Baltimore. That could make a decent example.

emmcauley commented 2 years ago

Is this ticket still of interest? If so, I may have some ideas for biomedical research datasets. Examples include:

Additionally, GeCo is a tool to create and corrupt synthetic data.

The first two would be valuable because there are plenty of academic papers whose results we may be able to test/validate +/- DP.

dvadym commented 2 years ago

Thank you @emmcauley, those datasets look very interesting!

I know nothing about using DP in medical research, it would be interesting to learn more (and maybe try to use PipelineDP). Don't you know some links (papers, presentations, books, videos etc) for helping to understand this area?

emmcauley commented 2 years ago

I'm interested in making this topic more approachable to a broader audience and I'm happy to collate some additional resources here (it will take me a few days or so). In the meantime, do you have specific questions I can help address?

dvadym commented 2 years ago

For me personally, I'd be interested in some use cases of using DP in medical research, do you know some papers about that? It would help to understand what methods are used, and whether we can support that in PipelineDP.

Yeah, It would be great to make it more approachable. I'm happy to participate in this.

aaallami commented 2 years ago

Is this ticket still of interest? If so, I may have some ideas for biomedical research datasets. Examples include:

* [Cancer Imaging Archive](https://www.cancerimagingarchive.net/collections/) --  a collection of imaging, genomic, and clinical data, some of which are publicly available.

* [cBioPortal](https://www.cbioportal.org/datasets) -- a collection of tabular clinical + genomic data

Additionally, GeCo is a tool to create and corrupt synthetic data.

The first two would be valuable because there are plenty of academic papers whose results we may be able to test/validate +/- DP.

@emmcauley I am working on secure cancer prediction protocols using data mining techniques such as K-means and SVM. The problem domain is secure multiparty computation (MPC), where multiple parties own the data and would like to analyze it without revealing their input. However, I am open to shifting the domain to the DP if it is applicable since I believe it offers better performance than MPC. Nevertheless, this kind of problem is more toward accuracy rather than performance. Therefore, the question becomes, can DP still offer higher accuracy than MPC? I am in the early stages of this project. If you have any feedback regarding my directions for this project, please let me know.