membership-inference
membership-inference copied to clipboard
Code for the paper: Label-Only Membership Inference Attacks
Hi, Could you please share some information about the package versions you used when developing this attack? There's some indication that a version of TensorFlow2 is used (presence of compat.v1...
Has anybody met the error 'module not found:cleverhans.model' even after the latest cleverhans (v=4.0.1) is installed?
source_features: (5000, 10), target_features: (5000, 10) Traceback (most recent call last): File "pipeline.py", line 244, in attack(args) File "pipeline.py", line 116, in attack dists_source_in = attack_features_tf1.dists(source_model, source_train_ds, attack="HSJ", max_samples=max_samples, File...
I'm doing an experiment with texas data. And in utils.py, input_dim = 6168 in original code. I recieved error: ''' Traceback (most recent call last): File "training.py", line 307, in...
Hello! When the program executes the 'binary_rand_robust()' function in 'attack_feature_tf1.py', I change 'labels = np.argmax(ybatch, axis=-1)' to 'labels = ybatch.reshape(-1, len(ybatch))[0]' in this function according to my understanding of your...