Skip to content

TIPRDC: Task-Independent Privacy-Respecting Data Crowdsourcing Framework for Deep Learning with Anonymized Intermediate Representations

License

Notifications You must be signed in to change notification settings

smtlmoel/TIPRDC

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

35 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TIPRDC: Task-Independent Privacy-Respecting Data Crowdsourcing Framework for Deep Learning with Anonymized Intermediate Representations

Introduction


This repo is the PyTorch code for our Best Student Paper in KDD 2020 (TIPRDC: Task-Independent Privacy-Respecting Data Crowdsourcing Framework for Deep Learning with Anonymized Intermediate Representations, slides, video).

Abstract

The success of deep learning partially benefits from the availability of various large-scale datasets. These datasets are often crowdsourced from individual users and contain private information like gender, age, etc. The emerging privacy concerns from users on data sharing hinder the generation or use of crowdsourcing datasets and lead to hunger of training data for new deep learning applications. One naive solution is to pre-process the raw data to extract features at the user-side, and then only the extracted features will be sent to the data collector. Unfortunately, attackers can still exploit these extracted features to train an adversary classifier to infer private attributes. Some prior arts leveraged game theory to protect private attributes. However, these defenses are designed for known primary learning tasks, the extracted features work poorly for unknown learning tasks. To tackle the case where the learning task may be unknown or changing, we present TIPRDC, a task-independent privacy-respecting data crowdsourcing framework with anonymized intermediate representation. The goal of this framework is to learn a feature extractor that can hide the privacy information from the intermediate representations; while maximally retaining the original information embedded in the raw data for the data collector to accomplish unknown learning tasks. We design a hybrid training method to learn the anonymized intermediate representation: (1) an adversarial training process for hiding private information from features; (2) maximally retain original information using a neural-network-based mutual information estimator. We extensively evaluate TIPRDC and compare it with existing methods using two image datasets and one text dataset. Our results show that TIPRDC substantially outperforms other existing methods. Our work is the first task-independent privacy-respecting data crowdsourcing framework.

The overview of TIPRDC.

The hybrid learning method for training the feature extractor.

Dependencies


Tested stable dependencies:

  • PyTorch 1.0
  • Python 3.6
  • Numpy
  • visdom

Dataset


How to Train from Scratch


  • Image/ is the folder for training on the image dataset.

    • VGG16.py is the vanila VGG model.
    • SegmentVGG16.py partition the VGG into 2 sub-networks: feature extractor and classifier.
    • MutualInformation.py is the network for estimating the mutual information.
    • pre_train.py is the module for pre-training. It will output a slightly pre-trained feature extractor and a classifier.
    • main.py is the core file for initializing the training process. It will call train_decoder.py and train_extractor.py to perform the adversarial training for achiving the target utility-privacy tradeoff.
    • decoder.py contains a decoder to simulate the reconstruction attacks performed by the adversary, who aims to reconstruct the input image from intermediate representations.
    • MS_SSIM.py defines the evaluation metric for the similarity between the raw images and the images that are reconstructed by the attacker.
  • Text/ is the folder for training on the text dataset.

    • LSTM.py contains a feature extractor module, a classifier module, and a mutual information module. They are the counterparts of SegmentVGG16.py and MUtualInformation.py in Image folder.
    • data_handler.py will tag the raw data in the DIAL dataset.
    • mydataset.py works for the PyTorch Dataloader.
    • pre_train.py will get a slightly pre-trained text feature extractor and a classifier.
    • main.py is the core file for initializing the training process. It works together with train_extractor.py to run the adversarial training on text classification task.

About

TIPRDC: Task-Independent Privacy-Respecting Data Crowdsourcing Framework for Deep Learning with Anonymized Intermediate Representations

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%