This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if __name__ == '__main__': | |
import json | |
import os | |
import sys | |
from prg import PrgSha3 | |
from fractions import Fraction | |
# discrete gaussian sampler from here: | |
# https://github.com/IBM/discrete-gaussian-differential-privacy | |
from discretegauss import (sample_dgauss, sample_bernoulli_exp) |