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 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.