From 12eed4b110a50eab7ad075d1c08116e67d6ed48d Mon Sep 17 00:00:00 2001 From: Amit Portnoy <1131991+amitport@users.noreply.github.com> Date: Thu, 12 May 2022 11:42:47 +0300 Subject: [PATCH] rename `client_batch_size` to `train_batch_size` as in the code --- compressed_communication/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compressed_communication/README.md b/compressed_communication/README.md index d3e412a0..be7bb0d9 100644 --- a/compressed_communication/README.md +++ b/compressed_communication/README.md @@ -43,7 +43,7 @@ could run ``` bazel run :trainer -- --task=emnist_character --total_rounds=100 --aggregator=quantize_entropy_code --step_size=0.5 --rounding_type=stochastic ---client_optimizer=sgd --client_learning_rate=0.1 --client_batch_size=20 +--client_optimizer=sgd --client_learning_rate=0.1 --train_batch_size=20 --server_optimizer=sgd --server_learning_rate=1.0 --clients_per_train_round=10 --experiment_name=emnist_compression ```