The correct answer is C because in image generation tasks using foundation models like Stable Diffusion on Amazon Bedrock, the number of generation steps directly influences the fidelity and level of detail of the generated image. Fewer steps can produce more abstract or less defined images, while more steps allow the model to refine details, resulting in higher realism.
From AWS documentation:
"In diffusion-based image generation models, the number of inference steps (generation steps) determines how refined the final image is. Lower steps produce faster but less detailed outputs. Increasing steps results in more detailed and higher-quality images."
Explanation of other options:
A. Model checkpoint refers to saved versions of the model during training, not inference-time generation settings.
B. Batch size affects training/inference throughput, not image detail.
D. Token length is relevant for text models, not image generation.
Referenced AWS AI/ML Documents and Study Guides:
Amazon Bedrock Documentation – Model Parameters for Image Generation
Stable Diffusion on Amazon Bedrock – Developer Guide
AWS ML Specialty Guide – Generative AI Configuration
Submit