Skip to content

Typo and add LabelImg note for binary downloads #7

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/source/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -387,6 +387,9 @@ Test your Installation
LabelImg Installation
---------------------

For Windows and Linux you can download the precompiled binary at http://tzutalin.github.io/labelImg/.
The steps for installing from source follow below.

Create a new Conda virtual environment
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
8 changes: 4 additions & 4 deletions docs/source/training.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Now that we have done all the above, we can start doing some cool stuff. Here we
Preparing workspace
~~~~~~~~~~~~~~~~~~~

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:
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:

| TensorFlow
| ├─ addons
Expand Down Expand Up @@ -612,7 +612,7 @@ Once the above changes have been applied to our config file, go ahead and save i
Training the Model
~~~~~~~~~~~~~~~~~~

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.
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.

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

Expand Down Expand Up @@ -715,10 +715,10 @@ Once your training job is complete, you need to extract the newly trained infere

activate tensorflow_gpu

- Copy the ``TensorFlow/models/research/object_detection/extract_inference_graph.py`` script and paste it straight into your ``training_demo`` folder.
- Copy the ``TensorFlow/models/research/object_detection/export_inference_graph.py`` script and paste it straight into your ``training_demo`` folder.
- 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.
- 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.
- 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.
- 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.
- Now, ``cd`` inside your ``training_demo`` folder, and run the following command:

.. code-block:: posh
Expand Down