Code Monkey home page Code Monkey logo

dpnlp's Introduction

Differentially Private Representation for NLP: Formal Guarantee and An Empirical Study on Privacy and Fairness

Descriptions

This repo contains source code and pre-processed corpora for Differentially Private Representation for NLP: Formal Guarantee and An Empirical Study on Privacy and Fairness (accepted to Findings of EMNLP 2020) (paper)

Dependencies

  • python3
  • pytorch>=1.4
  • transformers==3.0.2
  • cuda 10.0

Usage

git clone https://github.com/xlhex/dpnlp.git

Training and evaluation

export GLUE_DIR=data/
export TASK_NAME=ag # ag: AG news, bl: Blog post tp: TP-US

EPSILON=0.5 # {0.05, 0.1, 0.5, 1} refer to table 2 in our paper
LAPLACE=1 # using Laplace mechanism (1) and Gaussian mechanism (0)
SEED=1

python run_dp.py \
    --model_type dpbert \
    --model_name_or_path bert-base-cased \
    --task_name $TASK_NAME \
    --do_train \
    --do_eval \
    --do_lower_case \
    --data_dir $GLUE_DIR/ \
    --max_seq_length 128 \
    --per_gpu_train_batch_size 64 \
    --learning_rate 5e-5 \
    --num_train_epochs 4 \
    --epsilon $EPSILON \
    --laplace $LAPLACE \
    --seed $SEED \
    --output_dir ${TASK_NAME}/

dpnlp's People

Contributors

originofamonia avatar zodiacr avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.