18 lines
598 B
Bash
18 lines
598 B
Bash
set -e
|
|
|
|
cd ..
|
|
|
|
echo "Run distributed mode with ConvNet-2 on FEMNIST..."
|
|
|
|
### server
|
|
python federatedscope/main.py --cfg scripts/distributed_scripts/distributed_configs/distributed_femnist_server.yaml &
|
|
sleep 2
|
|
|
|
# clients
|
|
python federatedscope/main.py --cfg scripts/distributed_scripts/distributed_configs/distributed_femnist_client_1.yaml &
|
|
sleep 2
|
|
python federatedscope/main.py --cfg scripts/distributed_scripts/distributed_configs/distributed_femnist_client_2.yaml &
|
|
sleep 2
|
|
python federatedscope/main.py --cfg scripts/distributed_scripts/distributed_configs/distributed_femnist_client_3.yaml &
|
|
|