Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix/SK-548 | Fix printout at model staging at combiner #480

Merged
merged 1 commit into from
Oct 17, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading