sharmi1206
sharmi1206
On further installation of tensorflow_estimator==1.14.0rc0 the error changed to something else AttributeError: module 'tensorflow_estimator.python.estimator.canned.head' has no attribute '_all_class_ids'
Here is the GitHub checkins https://github.com/sharmi1206/differential-privacy-tensorflow/, where all the code related to DP was working in FEB , when it was checkedin. With tensorflow -1.1.15 What changes have gone in...
I followed up with tensorflow issue link. They have not responded yet.
Everything works fine with Multi-class text classification with SparseCategorical Cross-Entropy and Adam Optimizer. Just changing the optimizer to DPGradientDescent/DPGaussianOptimizer ( optimizer = DPGradientDescentGaussianOptimizer( l2_norm_clip=l2_norm_clip, noise_multiplier=noise_multiplier, num_microbatches=int(microbatches_perc * batch_size), learning_rate=learning_rate) OR...