From 64719b2b67feaa0168763fc183178adfbb2e9b8e Mon Sep 17 00:00:00 2001 From: Nidham Tekaya <62834628+TekayaNidham@users.noreply.github.com> Date: Fri, 15 Jan 2021 14:30:35 +0100 Subject: [PATCH] Update README.md wrong path --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 3e392903..06baae10 100644 --- a/README.md +++ b/README.md @@ -75,14 +75,14 @@ dataset = OpenFire('./data', download=True) You are free to use any training script, but some are already provided for reference. In order to use them, install the specific requirements and check script options as follows: ```shell -pip install -r references/classification/fastai/requirements.txt -python references/classification/fastai/train.py --help +pip install -r references/classification/OpenFire/fastai/requirements.txt +python references/classification/OpenFire/fastai/train.py --help ``` You can then run the script with your own arguments: ```shell -python references/classification/fastai/train.py --lr 3e-3 --epochs 4 --pretrained --deterministic +python references/classification/OpenFire/fastai/train.py --lr 3e-3 --epochs 4 --pretrained --deterministic ``` *Please note that most tasks are provided with two training scripts (and their `requirements.txt`): one using [fastai](https://github.com/fastai/fastai) and the other without it.*