Skip to content

Commit e397aee

Browse files
authored
Merge pull request sglvladi#7 from PHPirates/typos
Typo and add LabelImg note for binary downloads
2 parents e3c06ee + 319aa2a commit e397aee

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

docs/source/install.rst

+3
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,9 @@ Test your Installation
387387
LabelImg Installation
388388
---------------------
389389

390+
For Windows and Linux you can download the precompiled binary at http://tzutalin.github.io/labelImg/.
391+
The steps for installing from source follow below.
392+
390393
Create a new Conda virtual environment
391394
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
392395

docs/source/training.rst

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Now that we have done all the above, we can start doing some cool stuff. Here we
1919
Preparing workspace
2020
~~~~~~~~~~~~~~~~~~~
2121

22-
If you have followed the tutorial, you shhould by now have a folder ``Tensorflow``, placed under ``<PATH_TO_TF>`` (e.g. ``C:\Users\sglvladi\Documents``), with the following directory tree:
22+
If you have followed the tutorial, you should by now have a folder ``Tensorflow``, placed under ``<PATH_TO_TF>`` (e.g. ``C:\Users\sglvladi\Documents``), with the following directory tree:
2323

2424
| TensorFlow
2525
| ├─ addons
@@ -612,7 +612,7 @@ Once the above changes have been applied to our config file, go ahead and save i
612612
Training the Model
613613
~~~~~~~~~~~~~~~~~~
614614

615-
Before we begin training our model, let's go and copy the ``TensorFlow/models/research/object_detection/train.py`` script and paste it straight into our ``training_demo`` folder. We will need this script in order to train our model.
615+
Before we begin training our model, let's go and copy the ``TensorFlow/models/research/object_detection/legacy/train.py`` script and paste it straight into our ``training_demo`` folder. We will need this script in order to train our model.
616616

617617
Now, to initiate a new training job, ``cd`` inside the ``training_demo`` folder and type the following:
618618

@@ -715,10 +715,10 @@ Once your training job is complete, you need to extract the newly trained infere
715715
716716
activate tensorflow_gpu
717717
718-
- Copy the ``TensorFlow/models/research/object_detection/extract_inference_graph.py`` script and paste it straight into your ``training_demo`` folder.
718+
- Copy the ``TensorFlow/models/research/object_detection/export_inference_graph.py`` script and paste it straight into your ``training_demo`` folder.
719719
- Check inside your ``training_demo/training`` folder for the ``model.ckpt-*`` checkpoint file with the highest number following the name of the dash e.g. ``model.ckpt-34350``). This number represents the training step index at which the file was created.
720720
- Alternatively, simply sort all the files inside ``training_demo/training`` by descending time and pick the ``model.ckpt-*`` file that comes first in the list.
721-
- Make a note of the file's name, as it will be passed as an argument when we call the ``extract_inference_graph.py`` script.
721+
- Make a note of the file's name, as it will be passed as an argument when we call the ``export_inference_graph.py`` script.
722722
- Now, ``cd`` inside your ``training_demo`` folder, and run the following command:
723723

724724
.. code-block:: posh

0 commit comments

Comments
 (0)