Skip to content

Commit

Permalink
Fix bug in inception instructions (tensorflow#322)
Browse files Browse the repository at this point in the history
* Fix bug in inception README.md

Fixes tensorflow#59

* Document that number of classes and example count is hardcoded

Fixes tensorflow#190
  • Loading branch information
aselle authored and benoitsteiner committed Aug 16, 2016
1 parent fb41088 commit f8e16db
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions inception/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ DATA_DIR=$HOME/imagenet-data
bazel build inception/download_and_preprocess_imagenet

# run it
bazel-bin/inception/download_and_preprocess_imagenet "${DATA_DIR}$"
bazel-bin/inception/download_and_preprocess_imagenet "${DATA_DIR}"
```

The final line of the output script should read:
Expand Down Expand Up @@ -477,7 +477,9 @@ and `validation-?????-of-00001`, respectively.
you will need to invoke [`build_image_data.py`](inception/data/build_image_data.py) on
your custom data set. Please see the associated options and assumptions behind
this script by reading the comments section of [`build_image_data.py`]
(inception/data/build_image_data.py).
(inception/data/build_image_data.py). Also, if your custom data has a different
number of examples or classes, you need to change the appropriate values in
[`imagenet_data.py`](imagenet_data.py).

The second piece you will need is a trained Inception v3 image model. You have
the option of either training one yourself (See [How to Train from Scratch]
Expand Down

0 comments on commit f8e16db

Please sign in to comment.