From fac772757d2f9c0615c9c19547ec6f274e0ed811 Mon Sep 17 00:00:00 2001 From: Ethan Harris Date: Mon, 16 Aug 2021 16:35:04 +0100 Subject: [PATCH] Update flash_zero.rst (#662) --- docs/source/general/flash_zero.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/source/general/flash_zero.rst b/docs/source/general/flash_zero.rst index fb795825f9..da3f73cbb3 100644 --- a/docs/source/general/flash_zero.rst +++ b/docs/source/general/flash_zero.rst @@ -21,13 +21,13 @@ For example, to run the image classifier for 10 epochs with a `resnet50` backbon .. code-block:: bash - flash image-classification --trainer.max_epochs 10 --model.backbone resnet50 + flash image_classification --trainer.max_epochs 10 --model.backbone resnet50 To view all of the available options for a task, run: .. code-block:: bash - flash image-classification --help + flash image_classification --help Using Custom Data _________________ @@ -46,11 +46,11 @@ Now train with Flash Zero: .. code-block:: bash - flash image-classification from_folders --train_folder ./hymenoptera_data/train + flash image_classification from_folders --train_folder ./hymenoptera_data/train You can view the help page for each subcommand. For example, to view the options for training an image classifier from folders, you can run: .. code-block:: bash - flash image-classification from_folders --help + flash image_classification from_folders --help