From 920af77b2aecdcc12ceee3bad5b2ac1007516578 Mon Sep 17 00:00:00 2001 From: Andreas Hellander Date: Fri, 3 May 2024 14:55:23 +0200 Subject: [PATCH 1/2] Fixed FEDN_DATA_PATH in quickstart --- docs/quickstart.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/quickstart.rst b/docs/quickstart.rst index aa273ba98..cbff5ae5d 100644 --- a/docs/quickstart.rst +++ b/docs/quickstart.rst @@ -114,7 +114,7 @@ For example, to split the data in 10 parts and start a client using the 8th part export FEDN_PACKAGE_EXTRACT_DIR=package export FEDN_NUM_DATA_SPLITS=10 - export FEDN_DATA_PATH=package/data/clients/8/mnist.pt + export FEDN_DATA_PATH=./data/clients/8/mnist.pt fedn run client -in client.yaml --secure=True --force-ssl .. code-tab:: bash @@ -122,7 +122,7 @@ For example, to split the data in 10 parts and start a client using the 8th part $env:FEDN_PACKAGE_EXTRACT_DIR="package" $env:FEDN_NUM_DATA_SPLITS=10 - $env:FEDN_DATA_PATH="package/data/clients/8/mnist.pt" + $env:FEDN_DATA_PATH="./data/clients/8/mnist.pt" fedn run client -in client.yaml --secure=True --force-ssl From 303fabd1c56effe0ede6a43971868c8536b3f619 Mon Sep 17 00:00:00 2001 From: Andreas Hellander Date: Fri, 3 May 2024 14:57:49 +0200 Subject: [PATCH 2/2] Fixed FEDN_DATA_PATH in mnist-pytorch readme --- examples/mnist-pytorch/README.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/mnist-pytorch/README.rst b/examples/mnist-pytorch/README.rst index 4fa022bfd..8f0b5276c 100644 --- a/examples/mnist-pytorch/README.rst +++ b/examples/mnist-pytorch/README.rst @@ -72,7 +72,7 @@ For example, to split the data in 10 parts and start a client using the 8th part export FEDN_PACKAGE_EXTRACT_DIR=package export FEDN_NUM_DATA_SPLITS=10 - export FEDN_DATA_PATH=package/data/clients/8/mnist.pt + export FEDN_DATA_PATH=./data/clients/8/mnist.pt fedn run client -in client.yaml --secure=True --force-ssl The default is to split the data into 2 partitions and use the first partition.