PrivacyFL icon indicating copy to clipboard operation
PrivacyFL copied to clipboard

unnecessary print and undefined parameter

Open SShiravy opened this issue 3 years ago • 0 comments

in client_agent_serverless.py there are two unnecessary print in final_statistics function

def final_statistics(self):
    print("PERSONAL ACCURACY IS {}".format(self.personal_accuracy))
    print(self.personal_accuracy)
    print("FEDERATED ACCURACY IS {}".format(self.federated_accuracy))
    print(self.federated_accuracy)

in initializer_serverless.py (line 68) the function data_formatting.partition_data(...) does not have pyspark parameter

SShiravy avatar Apr 06 '22 09:04 SShiravy