"vscode:/vscode.git/clone" did not exist on "894959a7bd69ae9c4a50723ad128c734c64e6da2"
Commit 8b571b3a authored by Neal Wu's avatar Neal Wu
Browse files

More fixes/clarifications for the README

parent 5d232350
...@@ -24,7 +24,7 @@ model architecture. ...@@ -24,7 +24,7 @@ model architecture.
## Description of Code ## Description of Code
NOTE: For the most part, you will find a newer version of this code at [models/slim](https://github.com/tensorflow/models/tree/master/slim). In particular: **NOTE**: For the most part, you will find a newer version of this code at [models/slim](https://github.com/tensorflow/models/tree/master/slim). In particular:
* `inception_train.py` and `imagenet_train.py` should no longer be used. The slim editions for running on multiple GPUs are the current best examples. * `inception_train.py` and `imagenet_train.py` should no longer be used. The slim editions for running on multiple GPUs are the current best examples.
* `inception_distributed_train.py` and `imagenet_distributed_train.py` are still valid examples of distributed training. * `inception_distributed_train.py` and `imagenet_distributed_train.py` are still valid examples of distributed training.
...@@ -61,11 +61,6 @@ subsequent research. ...@@ -61,11 +61,6 @@ subsequent research.
## Getting Started ## Getting Started
**NOTE** Before doing anything, we first need to build TensorFlow from source,
and installed as a PIP package. Please follow the instructions at [Installing
From Source]
(https://www.tensorflow.org/install/install_sources).
Before you run the training script for the first time, you will need to download Before you run the training script for the first time, you will need to download
and convert the ImageNet data to native TFRecord format. The TFRecord format and convert the ImageNet data to native TFRecord format. The TFRecord format
consists of a set of sharded files where each entry is a serialized `tf.Example` consists of a set of sharded files where each entry is a serialized `tf.Example`
...@@ -639,9 +634,9 @@ reside within `$TRAIN_DIR` and `$VALIDATION_DIR` arranged as such: ...@@ -639,9 +634,9 @@ reside within `$TRAIN_DIR` and `$VALIDATION_DIR` arranged as such:
$VALIDATION_DIR/cat/cat.JPG $VALIDATION_DIR/cat/cat.JPG
... ...
``` ```
**NOTE** This script will append an extra background class indexed at 0, so your **NOTE**: This script will append an extra background class indexed at 0. Using the
class labels will range from [0, num_labels]. Using the example above, the example above, the corresponding class labels generated from `build_image_data.py`
corresponding class labels generated from `build_image_data.py` will be as follows: will be as follows:
```shell ```shell
0 0
1 dog 1 dog
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment