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

Make examples use start_client(). #2718

Merged
merged 15 commits into from
Jan 25, 2024
Prev Previous commit
Next Next commit
using start_client.py
  • Loading branch information
jafermarq committed Jan 23, 2024
commit 4624db72ab51c8df518229b51c48eabec75986c6
2 changes: 1 addition & 1 deletion examples/quickstart-pandas/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def fit(
X = dataset[column_names]

# Start Flower client
fl.client.start_numpy_client(
fl.client.start_client(
server_address="127.0.0.1:8080",
client=FlowerClient(X).to_client(),
)