From 99d6decfeb82d679dc1b68fea93b3fe273d2acd7 Mon Sep 17 00:00:00 2001 From: Ziyao Peng <42887453+zpeng1898@users.noreply.github.com> Date: Tue, 13 Dec 2022 10:51:43 +0800 Subject: [PATCH] Orca docs: The mv command in the document k8s.md needs to be modified (#6939) --- docs/readthedocs/source/doc/Orca/Tutorial/k8s.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/readthedocs/source/doc/Orca/Tutorial/k8s.md b/docs/readthedocs/source/doc/Orca/Tutorial/k8s.md index 60fc8548..bb7475cf 100644 --- a/docs/readthedocs/source/doc/Orca/Tutorial/k8s.md +++ b/docs/readthedocs/source/doc/Orca/Tutorial/k8s.md @@ -214,13 +214,13 @@ Please download the Fashion-MNIST dataset manually on your __Develop Node__ and git clone https://github.com/zalandoresearch/fashion-mnist.git # Move the dataset to NFS under the folder FashionMNIST/raw -mv /path/to/fashion-mnist/data/fashion /bigdl/nfsdata/dataset/FashionMNIST/raw +mv /path/to/fashion-mnist/data/fashion/* /bigdl/nfsdata/dataset/FashionMNIST/raw # Extract FashionMNIST archives gzip -dk /bigdl/nfsdata/dataset/FashionMNIST/raw/* ``` -In the given example, you can specify the argument `--remote_dir` to be the directory on NFS for the Fashion-MNIST dataset. +In the given example, you can specify the argument `--remote_dir` to be the directory on NFS for the Fashion-MNIST dataset. The directory should contain `FashionMNIST/raw/train-images-idx3-ubyte` and `FashionMNIST/raw/t10k-images-idx3`. ---