Classifying bottles
Esther decided to do something with her machine learning model to get better results from her model.
She was responsible for a deep learning model to classify bottles in a factory. Instead of running every picture through her model, she created two more copies of the image: the first by flipping the original image vertically and the second by zooming in around 10%.
Esther ran all three images through the model. She figured that having multiple images to construct the final answer would give her better results.
What’s the best way for Esther to use the three softmax vectors that her model will output to make a final decision? Select only one option.
Esther should select the best one of the three vectors that come out of her model.
Esther should use the softmax vector that contains the lowest value to compute the final result.
Esther should use the softmax vector that includes the highest value to calculate the final result.
Esther should average out every softmax vector and use that new vector to compute the final result.