Skip to content

Commit

Permalink
Update data_distribute_heplers.py
Browse files Browse the repository at this point in the history
  • Loading branch information
phamxuansang241 authored Nov 28, 2023
1 parent a39f888 commit 197f914
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion tek4fed/data_lib/data_distribute_heplers.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ def sampling(self, sampling_technique, nb_clients):
def assign_data_to_clients(self, clients, sampling_technique):
sampled_data_indices = self.sampling(sampling_technique, len(clients))
for client, data_indices in zip(clients, sampled_data_indices):
print(len(data_indices))

if isinstance(self.x_train, np.ndarray):
x = self.x_train[data_indices]
Expand Down

0 comments on commit 197f914

Please sign in to comment.