Topic 1 Question 256
2 つ選択A company is creating an application to identify, count, and classify animal images that are uploaded to the company’s website. The company is using the Amazon SageMaker image classification algorithm with an ImageNetV2 convolutional neural network (CNN). The solution works well for most animal images but does not recognize many animal species that are less common.
The company obtains 10,000 labeled images of less common animal species and stores the images in Amazon S3. A machine learning (ML) engineer needs to incorporate the images into the model by using Pipe mode in SageMaker.
Which combination of steps should the ML engineer take to train the model?
Use a ResNet model. Initiate full training mode by initializing the network with random weights.
Use an Inception model that is available with the SageMaker image classification algorithm.
Create a .lst file that contains a list of image files and corresponding class labels. Upload the .lst file to Amazon S3.
Initiate transfer learning. Train the model by using the images of less common species.
Use an augmented manifest file in JSON Lines format.
ユーザの投票
コメント(12)
- 正解だと思う選択肢: CD
C. Create a .lst file that contains a list of image files and corresponding class labels. Upload the .lst file to Amazon S3. D. Initiate transfer learning. Train the model by using the images of less common species.
Details provided in this blog post: https://aws.amazon.com/blogs/machine-learning/classify-your-own-images-using-amazon-sagemaker/
👍 3brianb082023/06/28 - 正解だと思う選択肢: CD
A. NO - we can't change the model for transfer learning B. NO - we can't change the model for transfer learning C. YES - lst file is how we give input to SageMaker (https://medium.com/@texasdave2/itty-bitty-lst-file-format-converter-for-machine-learning-image-classification-on-aws-sagemaker-b3828c7ba9cc) D. YES - obvious E. NO - there is no extra metadata we want to provide (https://docs.aws.amazon.com/sagemaker/latest/dg/augmented-manifest.html)
👍 3loict2023/09/12 - 正解だと思う選択肢: DE
Augmented manifest format enables you to do training in Pipe mode using files without needing to create RecordIO files (.rec)
👍 2awsarchitect52023/07/25
シャッフルモード