Skip to content

Commit

Permalink
Update performance_models.md
Browse files Browse the repository at this point in the history
  • Loading branch information
leviding authored Mar 9, 2018
1 parent 7ea2648 commit 9ef9384
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions performance/performance_models.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ implementation is made up of 3 stages:

The dominant part of each stage is executed in parallel with the other stages
using `data_flow_ops.StagingArea`. `StagingArea` is a queue-like operator
similar to @{tf.FIFOQueue}. The difference is that `StagingArea` does not
guarantee FIFO ordering, but offers simpler functionality and can be executed
similar to @{tf.FIFOQueue}. The difference is that `StagingArea` does not
guarantee FIFO ordering, but offers simpler functionality and can be executed
on both CPU and GPU in parallel with other stages. Breaking the input pipeline
into 3 stages that operate independently in parallel is scalable and takes full
advantage of large multi-core environments. The rest of this section details
Expand Down Expand Up @@ -344,7 +344,7 @@ executing the main script
`alexnet`.
* **`num_gpus`**: Number of GPUs to use.
* **`data_dir`**: Path to data to process. If not set, synthetic data is used.
To use Imagenet data use these
To use ImageNet data use these
[instructions](https://github.com/tensorflow/models/tree/master/research/inception#getting-started)
as a starting point.
* **`batch_size`**: Batch size for each GPU.
Expand Down

0 comments on commit 9ef9384

Please sign in to comment.