Skip to content

Commit ea107ea

Browse files
committed
Regen docs and add note for SSD-ResNet34 commits (#289)
* Regen docs and add note for SSD-ResNet34 commits Signed-off-by: Abolfazl Shahbazi <[email protected]> * More SSD-ResNet34 doc updates Signed-off-by: Abolfazl Shahbazi <[email protected]> * Fix a typo Signed-off-by: Abolfazl Shahbazi <[email protected]>
1 parent ae6202c commit ea107ea

File tree

8 files changed

+18
-10
lines changed

8 files changed

+18
-10
lines changed

benchmarks/object_detection/tensorflow/ssd-resnet34/training/bfloat16/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ to download and preprocess the dataset.
4545
```
4646
git clone https://github.com/tensorflow/models.git tf_models
4747
cd tf_models
48-
git checkout 8110bb64ca63c48d0caee9d565e5b4274db2220a
48+
git checkout 7a9934df2afdf95be9405b4e9f1f2480d748dc40
4949
cd ..
5050
```
5151
@@ -162,7 +162,8 @@ Clone the repo at the commit specified below, and set the `TF_MODELS_DIR`
162162
environment variable to point to that directory. Apply the TF2 patch from
163163
the model zoo to the TensorFlow models directory.
164164
```
165-
# Clone the tensorflow/models repo at the specified commit
165+
# Clone the tensorflow/models repo at the specified commit.
166+
# Please note that required commit for this section is different from the one used for dataset preparation.
166167
git clone https://github.com/tensorflow/models.git tf_models
167168
cd tf_models
168169
export TF_MODELS_DIR=$(pwd)

benchmarks/object_detection/tensorflow/ssd-resnet34/training/fp32/README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ to download and preprocess the dataset.
4545
```
4646
git clone https://github.com/tensorflow/models.git tf_models
4747
cd tf_models
48-
git checkout 8110bb64ca63c48d0caee9d565e5b4274db2220a
48+
git checkout 7a9934df2afdf95be9405b4e9f1f2480d748dc40
4949
cd ..
5050
```
5151
@@ -156,7 +156,8 @@ Running SSD-ResNet34 training uses code from the
156156
Clone the repo at the commit specified below, and set the `TF_MODELS_DIR` environment
157157
variable to point to that directory.
158158
```
159-
# Clone the tensorflow/models repo at the specified commit
159+
# Clone the tensorflow/models repo at the specified commit.
160+
# Please note that required commit for this section is different from the one used for dataset preparation.
160161
git clone https://github.com/tensorflow/models.git tf_models
161162
cd tf_models
162163
export TF_MODELS_DIR=$(pwd)

quickstart/object_detection/tensorflow/ssd-resnet34/training/cpu/bfloat16/.docs/aikit.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,8 @@ Clone the repo at the commit specified below, and set the `TF_MODELS_DIR`
7575
environment variable to point to that directory. Apply the TF2 patch from
7676
the model zoo to the TensorFlow models directory.
7777
```
78-
# Clone the tensorflow/models repo at the specified commit
78+
# Clone the tensorflow/models repo at the specified commit.
79+
# Please note that required commit for this section is different from the one used for dataset preparation.
7980
git clone https://github.com/tensorflow/models.git tf_models
8081
cd tf_models
8182
export TF_MODELS_DIR=$(pwd)

quickstart/object_detection/tensorflow/ssd-resnet34/training/cpu/bfloat16/.docs/baremetal.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,8 @@ Clone the [TensorFlow Model Garden](https://github.com/tensorflow/models)
3030
repo at the commit specified below, and set the `TF_MODELS_DIR` environment
3131
variable to point to that directory.
3232
```
33-
# Clone the tensorflow/models repo at the specified commit
33+
# Clone the tensorflow/models repo at the specified commit.
34+
# Please note that required commit for this section is different from the one used for dataset preparation.
3435
git clone https://github.com/tensorflow/models.git tf_models
3536
cd tf_models
3637
export TF_MODELS_DIR=$(pwd)

quickstart/object_detection/tensorflow/ssd-resnet34/training/cpu/bfloat16/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ Clone the [TensorFlow Model Garden](https://github.com/tensorflow/models)
122122
repo at the commit specified below, and set the `TF_MODELS_DIR` environment
123123
variable to point to that directory.
124124
```
125-
# Clone the tensorflow/models repo at the specified commit
125+
# Clone the tensorflow/models repo at the specified commit.
126+
# Please note that required commit for this section is different from the one used for dataset preparation.
126127
git clone https://github.com/tensorflow/models.git tf_models
127128
cd tf_models
128129
export TF_MODELS_DIR=$(pwd)

quickstart/object_detection/tensorflow/ssd-resnet34/training/cpu/fp32/.docs/aikit.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,8 @@ Running <model name> <mode> uses code from the
7474
Clone the repo at the commit specified below, and set the `TF_MODELS_DIR` environment
7575
variable to point to that directory.
7676
```
77-
# Clone the tensorflow/models repo at the specified commit
77+
# Clone the tensorflow/models repo at the specified commit.
78+
# Please note that required commit for this section is different from the one used for dataset preparation.
7879
git clone https://github.com/tensorflow/models.git tf_models
7980
cd tf_models
8081
export TF_MODELS_DIR=$(pwd)

quickstart/object_detection/tensorflow/ssd-resnet34/training/cpu/fp32/.docs/baremetal.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ export DATASET_DIR=<path to the dataset>
4040
export OUTPUT_DIR=<directory where log and checkpoint files will be written>
4141
export MPI_NUM_PROCESSES=<number of MPI processes (optional, defaults to 1)>
4242
43-
# Clone the tensorflow/models repo at the specified commit
43+
# Clone the tensorflow/models repo at the specified commit.
44+
# Please note that required commit for this section is different from the one used for dataset preparation.
4445
git clone https://github.com/tensorflow/models.git tf_models
4546
cd tf_models
4647
export TF_MODELS_DIR=$(pwd)

quickstart/object_detection/tensorflow/ssd-resnet34/training/cpu/fp32/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ export DATASET_DIR=<path to the dataset>
127127
export OUTPUT_DIR=<directory where log and checkpoint files will be written>
128128
export MPI_NUM_PROCESSES=<number of MPI processes (optional, defaults to 1)>
129129
130-
# Clone the tensorflow/models repo at the specified commit
130+
# Clone the tensorflow/models repo at the specified commit.
131+
# Please note that required commit for this section is different from the one used for dataset preparation.
131132
git clone https://github.com/tensorflow/models.git tf_models
132133
cd tf_models
133134
export TF_MODELS_DIR=$(pwd)

0 commit comments

Comments
 (0)