NCA-AIIO · Question #25
NCA-AIIO Question #25: Real Exam Question with Answer & Explanation
The correct answer is B: Sequential read. Training neural networks typically involves streaming large datasets from storage in a sequential read pattern. This ordered access maximizes throughput and minimizes seek overhead, as training pipelines ingest data in batches for processing across epochs. Writes (e.g., model che
Question
When training a neural network, what is the most common pattern of storage access?
Options
- ARandom write
- BSequential read
- CSequential write
Explanation
Training neural networks typically involves streaming large datasets from storage in a sequential read pattern. This ordered access maximizes throughput and minimizes seek overhead, as training pipelines ingest data in batches for processing across epochs. Writes (e.g., model checkpoints) are less frequent and typically sequential, while random writes are rare, making sequential reads the dominant pattern. (Note: The document incorrectly lists C as the answer; B aligns with NVIDIA's documentation.)
Topics
Community Discussion
No community discussion yet for this question.