Skip to content
Snippets Groups Projects
Commit 90e439a4 authored by Rishi Sharma's avatar Rishi Sharma
Browse files

Debug TCP

parent 5fdfc1fa
No related branches found
No related tags found
No related merge requests found
...@@ -124,7 +124,7 @@ class Sharing: ...@@ -124,7 +124,7 @@ class Sharing:
iteration = data["iteration"] iteration = data["iteration"]
del data["degree"] del data["degree"]
del data["iteration"] del data["iteration"]
self.peer_deques[sender].append((degree, data)) self.peer_deques[sender].append((degree, iteration, data))
logging.info( logging.info(
"Deserialized received model from {} of iteration {}".format( "Deserialized received model from {} of iteration {}".format(
sender, iteration sender, iteration
...@@ -135,8 +135,10 @@ class Sharing: ...@@ -135,8 +135,10 @@ class Sharing:
total = dict() total = dict()
weight_total = 0 weight_total = 0
for i, n in enumerate(self.peer_deques): for i, n in enumerate(self.peer_deques):
logging.debug("Averaging model from neighbor {}".format(i)) degree, iteration, data = self.peer_deques[n].popleft()
degree, data = self.peer_deques[n].popleft() logging.debug(
"Averaging model from neighbor {} of iteration {}".format(i, iteration)
)
data = self.deserialized_model(data) data = self.deserialized_model(data)
weight = 1 / (max(len(self.peer_deques), degree) + 1) # Metro-Hastings weight = 1 / (max(len(self.peer_deques), degree) + 1) # Metro-Hastings
weight_total += weight weight_total += weight
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment