Skip to content

Commit

Permalink
fix print
Browse files Browse the repository at this point in the history
  • Loading branch information
Wrede committed Oct 6, 2023
1 parent 7a18790 commit deed49e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fedn/fedn/network/combiner/round.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ def stage_model(self, model_id, timeout_retry=3, retry=2):

# If the model is already in memory at the server we do not need to do anything.
if self.modelservice.models.exist(model_id):
print("MODEL EXISTST (NOT)", flush=True)
print("ROUNDCONTROL: Model already exists in memory, skipping model staging.", flush=True)
return
print("MODEL STAGING", flush=True)
print("ROUNDCONTROL: Model Staging, fetching model from storage...", flush=True)
# If not, download it and stage it in memory at the combiner.
tries = 0
while True:
Expand Down

0 comments on commit deed49e

Please sign in to comment.