File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 15
15
"""Read and preprocess image data.
16
16
17
17
Image processing occurs on a single image at a time. Image are read and
18
- preprocessed in pararllel across mulitple threads. The resulting images
18
+ preprocessed in parallel across multiple threads. The resulting images
19
19
are concatenated together to form a single batch for training or evaluation.
20
20
21
21
-- Provide processed image data for a network:
54
54
tf .app .flags .DEFINE_integer ('num_readers' , 4 ,
55
55
"""Number of parallel readers during train.""" )
56
56
57
- # Images are preprocessed asynchronously using multiple threads specifed by
57
+ # Images are preprocessed asynchronously using multiple threads specified by
58
58
# --num_preprocss_threads and the resulting processed images are stored in a
59
59
# random shuffling queue. The shuffling queue dequeues --batch_size images
60
60
# for processing on a given Inception tower. A larger shuffling queue guarantees
You can’t perform that action at this time.
0 commit comments