Skip to content

Commit

Permalink
Bugfix/SK-648 | Use latest mongodb and bump version number (#502)
Browse files Browse the repository at this point in the history
  • Loading branch information
ahellander authored Jan 29, 2024
1 parent b7b351d commit 2b95237
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ services:
- 9001:9001

mongo:
image: mongo:5.0.2
image: mongo:7.0
restart: always
environment:
- MONGO_INITDB_ROOT_USERNAME=fedn_admin
Expand Down
2 changes: 1 addition & 1 deletion fedn/fedn/network/api/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ def get_round(self, round_id):
return response.json()

def start_session(self, session_id=None, aggregator='fedavg', model_id=None, round_timeout=180, rounds=5, round_buffer_size=-1, delete_models=True,
validate=True, helper='kerashelper', min_clients=1, requested_clients=8):
validate=True, helper='numpyhelper', min_clients=1, requested_clients=8):
""" Start a new session.
:param session_id: The session id to start.
Expand Down
2 changes: 1 addition & 1 deletion fedn/fedn/network/api/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -1011,7 +1011,7 @@ def start_session(
round_buffer_size=-1,
delete_models=False,
validate=True,
helper="keras",
helper="numpyhelper",
min_clients=1,
requested_clients=8,
):
Expand Down
2 changes: 1 addition & 1 deletion fedn/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name='fedn',
version='0.6.0',
version='0.7.2',
description="""Scaleout Federated Learning""",
author='Scaleout Systems AB',
author_email='contact@scaleoutsystems.com',
Expand Down

0 comments on commit 2b95237

Please sign in to comment.